All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.mallet.util.ProgressMessageLogRecord Maven / Gradle / Ivy

Go to download

MALLET is a Java-based package for statistical natural language processing, document classification, clustering, topic modeling, information extraction, and other machine learning applications to text.

The newest version!
package cc.mallet.util;

import java.util.logging.LogRecord;


/**
 * A log message that is to be written in place (no newline)
 * if the message is headed for the user's terminal.
 */
public class ProgressMessageLogRecord extends LogRecord
{
	public ProgressMessageLogRecord(LogRecord logRecord)
	{
		 super(logRecord.getLevel(), logRecord.getMessage());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy