
cc.mallet.util.ProgressMessageLogRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcore-mallet-2.0.9 Show documentation
Show all versions of jcore-mallet-2.0.9 Show documentation
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