|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EvalStatus | |
---|---|
de.fu_berlin.ties.classify | This package provides functionality for classification of texts and feature vectors. |
de.fu_berlin.ties.classify.winnow | This package contains the Winnow classification algorithm and related algorithms and classes. |
de.fu_berlin.ties.eval | This packages provides functionality for evaluating results of classifiers and extractors. |
de.fu_berlin.ties.extract | This package handles information extraction and entitiy recognition. |
Uses of EvalStatus in de.fu_berlin.ties.classify |
---|
Methods in de.fu_berlin.ties.classify that return EvalStatus | |
---|---|
EvalStatus |
Prediction.getEvalStatus()
Returns the evaluation status of this instance. |
Methods in de.fu_berlin.ties.classify with parameters of type EvalStatus | |
---|---|
void |
Prediction.setEvalStatus(EvalStatus newEvalStatus)
Modifies the evaluation status of this instance. |
Constructors in de.fu_berlin.ties.classify with parameters of type EvalStatus | |
---|---|
Prediction(String predicted,
Probability prob,
EvalStatus status)
Creates a new instance. |
|
Prediction(String predicted,
String sourceID,
Probability prob,
EvalStatus status)
Creates a new instance. |
Uses of EvalStatus in de.fu_berlin.ties.classify.winnow |
---|
Constructors in de.fu_berlin.ties.classify.winnow with parameters of type EvalStatus | |
---|---|
WinnowPrediction(String predicted,
double prob,
float raw,
float sigmoid,
EvalStatus status)
Creates a new instance, without setting a source ID. |
|
WinnowPrediction(String predicted,
String sourceID,
double prob,
float raw,
float sigmoid,
EvalStatus status)
Creates a new instance. |
Uses of EvalStatus in de.fu_berlin.ties.eval |
---|
Fields in de.fu_berlin.ties.eval declared as EvalStatus | |
---|---|
static EvalStatus |
EvalStatus.ALTERNATIVE
Constant for answer keys that could have proposed as predictions but were not. |
static EvalStatus |
EvalStatus.CORRECT
Constant for correct predictions (true positives) resp for answer keys matched by a prediction. |
static EvalStatus |
EvalStatus.IGNORED
Constant for predictions that were ignored. |
static EvalStatus |
EvalStatus.MISSING
Constant for missing answer keys (false negatives). |
static EvalStatus |
EvalStatus.SPURIOUS
Constant for spurious predictions (false positives). |
static EvalStatus |
EvalStatus.TRUTH
Constant for items defined to be true (answer keys, "gold standard"). |
static EvalStatus |
EvalStatus.UNKNOWN
Constant for predictions whose evaluation status is unknown (not yet evaluated). |
Methods in de.fu_berlin.ties.eval that return EvalStatus | |
---|---|
static EvalStatus |
EvalStatus.parse(String representation)
Parses a textual representation into an eval status, without using a default object. |
static EvalStatus |
EvalStatus.parse(String representation,
boolean useDefault)
Parses a textual representation into an eval status. |
Uses of EvalStatus in de.fu_berlin.ties.extract |
---|
Methods in de.fu_berlin.ties.extract with parameters of type EvalStatus | |
---|---|
protected void |
EvaluatedExtractionContainer.addAllAndClear(Collection extractionColl,
EvalStatus status,
String source)
Helper method that adds a bunch of extractions, setting their evaluation status and source as specified. |
Constructors in de.fu_berlin.ties.extract with parameters of type EvalStatus | |
---|---|
Extraction(String predicted,
TokenDetails details,
Probability prob,
EvalStatus status)
Creates a new instance. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |