Skip to content
Snippets Groups Projects
Commit 765d6448 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Fixed log message

parent 0abaac5f
No related branches found
No related tags found
1 merge request!30Resolve "training is very verbose"
Pipeline #
......@@ -76,7 +76,7 @@ def train(trainer, machine, data, max_iterations=50, convergence_threshold=None,
# Terminates if converged (and likelihood computation is set)
if convergence_threshold != None and convergence_value <= convergence_threshold:
logger.info("EM training converged after %d iterations with convergence value %f", convergence_value)
logger.info("EM training converged after %d iterations with convergence value %f", i, convergence_value)
break
if hasattr(trainer, "finalize"):
trainer.finalize(machine, data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment