NishantShri4 commented on code in PR #758: URL: https://github.com/apache/opennlp/pull/758#discussion_r2012703736
########## opennlp-tools/src/main/java/opennlp/tools/monitoring/ConsoleTrainingProgressMonitor.java: ########## @@ -0,0 +1,51 @@ +package opennlp.tools.monitoring; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.util.LinkedList; +import java.util.List; +import java.util.Objects; + +import static opennlp.tools.monitoring.StopCriteria.TRAINING_FINISHED_DEFAULT_MSG; + +/** + * Publishes ML model's Training progress to console. + */ +public class ConsoleTrainingProgressMonitor implements TrainingProgressMonitor { Review Comment: Thanks @rzo1. How about - DefaultTrainingProgressMonitor? This will route the messages to whatever logging INFO appender is configured. Or pls. feel free to suggest another suitable name. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@opennlp.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org