Skip to content

Commit 5654ac3

Browse files
committed
fix: stop logging em divergence warning
1 parent 91346bc commit 5654ac3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/em.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ fn check_convergence(
316316

317317
// Detect potential divergence
318318
if iteration > 10 && cutoff > 1e-2 {
319-
warn!("EM may be diverging at iteration {} (delta: {:.2e})", iteration + 1, cutoff);
319+
info!("EM may be diverging at iteration {} (delta: {:.2e})", iteration + 1, cutoff);
320320
}
321321

322322
false
@@ -768,4 +768,4 @@ mod tests {
768768
assert_eq!(score_sum, 0.0, "Read with all zero scores should sum to 0.0");
769769
}
770770
}
771-
}
771+
}

0 commit comments

Comments
 (0)