|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
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>>
Contains results collected from running a test harness over a group of
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.
Method Summary | |
---|---|
Map<MWEPOS,Integer> |
getAnswerData()
Returns a map that stores the number of answer multi-word expressions for each part of speech. |
Map<MWEPOS,Integer> |
getCorrectData()
Returns a map that stores the number of multi-word expressions correctly found by the detector for each part of speech. |
Map<String,ISentenceResult<T,S>> |
getDetails()
Returns a map that stores the results for a unit under its ID. |
Map<MWEPOS,Double> |
getF1Scores()
Returns a map that stores the f1 measures of the detector for each part of speech. |
Map<MWEPOS,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. |
Map<MWEPOS,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. |
Map<MWEPOS,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. |
Map<MWEPOS,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. |
Map<MWEPOS,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. |
Map<MWEPOS,Double> |
getPrecisionScores()
Returns a map that stores the precision of the detector for each part of speech. |
Map<MWEPOS,Double> |
getRecallScores()
Returns a map that stores the recall of the detector for each part of speech. |
Methods inherited from interface edu.mit.jmwe.harness.result.IBaseResult |
---|
getFScore, getPrecision, getRecall, getTotalAnswers, getTotalCorrect, getTotalFound |
Method Detail |
---|
Map<String,ISentenceResult<T,S>> getDetails()
null
.
Map<MWEPOS,Integer> getAnswerData()
null
.
Map<MWEPOS,Integer> getFoundData()
null
.
Map<MWEPOS,Integer> getCorrectData()
null
.
Map<MWEPOS,Double> getPartialScores()
null
.
Map<MWEPOS,Double> getPrecisionScores()
null
.
Map<MWEPOS,Double> getF1Scores()
null
.
Map<MWEPOS,Double> getRecallScores()
null
.
Map<MWEPOS,Double> getPartialPrecisionScores()
null
.
Map<MWEPOS,Double> getPartialRecallScores()
null
.
Map<MWEPOS,Double> getPartialF1Scores()
null
.
double getPartialF1Score()
double getPartialScore()
double getPartialPrecision()
double getPartialRecall()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |