T - the type of tokens in the sentenceS - the type of sentence the harness runs over. Is parameterized by tokens
of type T.public interface IOverallResult<T extends IToken,S extends IMarkedSentence<T>> extends IBaseResult
IMarkedSentence objects. Contains overall precision and recall scores as well
as detailed results, an ISentenceResult, for each unit the harness runs
over. The results are organized by part of speech.| Modifier and Type | Method and Description |
|---|---|
java.util.Map<MWEPOS,java.lang.Integer> |
getAnswerData()
Returns a map that stores the number of answer multi-word expressions for
each part of speech.
|
java.util.Map<MWEPOS,java.lang.Integer> |
getCorrectData()
Returns a map that stores the number of multi-word expressions correctly
found by the detector for each part of speech.
|
java.util.Map<java.lang.String,ISentenceResult<T,S>> |
getDetails()
Returns a map that stores the results for a unit under its ID.
|
java.util.Map<MWEPOS,java.lang.Double> |
getF1Scores()
Returns a map that stores the f1 measures of the detector for each part
of speech.
|
java.util.Map<MWEPOS,java.lang.Integer> |
getFoundData()
Returns a map that stores the number of multi-word expressions found by
the detector for each part of speech.
|
double |
getPartialF1Score()
Returns the total F score earned by the detector, taking into account
partial credit.
|
java.util.Map<MWEPOS,java.lang.Double> |
getPartialF1Scores()
Returns a map that stores the f1 measure of the detector for each part of
speech after adding the partial credit to its correct score.
|
double |
getPartialPrecision()
Returns the total precision of the detector after counting partial
credit.
|
java.util.Map<MWEPOS,java.lang.Double> |
getPartialPrecisionScores()
Returns a map that stores the precision of the detector for each part of
speech after adding the partial credit to its correct score.
|
double |
getPartialRecall()
Returns the total recall of the detector after counting partial credit.
|
java.util.Map<MWEPOS,java.lang.Double> |
getPartialRecallScores()
Returns a map that stores the recall of the detector for
each part of speech after adding the partial credit to its correct score.
|
double |
getPartialScore()
Returns the total partial credit earned by the detector.
|
java.util.Map<MWEPOS,java.lang.Double> |
getPartialScores()
Returns a map that stores the partial credit for the partially correct
multi-word expressions found by the detector for each part of speech.
|
java.util.Map<MWEPOS,java.lang.Double> |
getPrecisionScores()
Returns a map that stores the precision of the detector for
each part of speech.
|
java.util.Map<MWEPOS,java.lang.Double> |
getRecallScores()
Returns a map that stores the recall of the detector for each part of
speech.
|
getFScore, getPrecision, getRecall, getTotalAnswers, getTotalCorrect, getTotalFoundjava.util.Map<java.lang.String,ISentenceResult<T,S>> getDetails()
null.java.util.Map<MWEPOS,java.lang.Integer> getAnswerData()
null.java.util.Map<MWEPOS,java.lang.Integer> getFoundData()
null.java.util.Map<MWEPOS,java.lang.Integer> getCorrectData()
null.java.util.Map<MWEPOS,java.lang.Double> getPartialScores()
null.java.util.Map<MWEPOS,java.lang.Double> getPrecisionScores()
null.java.util.Map<MWEPOS,java.lang.Double> getF1Scores()
null.java.util.Map<MWEPOS,java.lang.Double> getRecallScores()
null.java.util.Map<MWEPOS,java.lang.Double> getPartialPrecisionScores()
null.java.util.Map<MWEPOS,java.lang.Double> getPartialRecallScores()
null.java.util.Map<MWEPOS,java.lang.Double> getPartialF1Scores()
null.double getPartialF1Score()
double getPartialScore()
double getPartialPrecision()
double getPartialRecall()
Copyright © 2011 Massachusetts Institute of Technology. All Rights Reserved.