blob: eeec89de7acc4c06bd33f75c76ca2a1a08244440 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package opennlp.tools.cmdline.langdetect;
import java.io.OutputStream;
import opennlp.tools.cmdline.EvaluationErrorPrinter;
import opennlp.tools.langdetect.LanguageDetectorEvaluationMonitor;
import opennlp.tools.langdetect.LanguageSample;
import opennlp.tools.util.eval.EvaluationMonitor;
/**
* A default implementation of {@link EvaluationMonitor} that prints to an
* output stream.
*
*/
public class LanguageDetectorEvaluationErrorListener extends
EvaluationErrorPrinter<LanguageSample> implements LanguageDetectorEvaluationMonitor {
/**
* Creates a listener that will print to System.err
*/
public LanguageDetectorEvaluationErrorListener() {
super(System.err);
}
/**
* Creates a listener that will print to a given {@link OutputStream}
*/
public LanguageDetectorEvaluationErrorListener(OutputStream outputStream) {
super(outputStream);
printStream.println("Expected\tPredicted\tContext");
}
@Override
public void missclassified(LanguageSample reference, LanguageSample prediction) {
printError(reference, prediction);
}
@Override
protected void printError(LanguageSample referenceSample, LanguageSample predictedSample) {
printStream.println(String.join("\t", referenceSample.getLanguage().getLang(),
predictedSample.getLanguage().getLang(),
referenceSample.getContext()));
}
}