Represents the accuracy of a SentenceSegmenter on a paragraph!
Inheritance: Nuve.Sentence.SimpleEvaluation
Beispiel #1
0
 private bool Equals(DetailedEvaluation other)
 {
     return(Equals(_misses, other._misses) &&
            Equals(_hits, other._hits) &&
            Equals(_falseAlarms, other._falseAlarms) &&
            _eosCandidateCount == other._eosCandidateCount &&
            string.Equals(_paragraph, other._paragraph));
 }
Beispiel #2
0
 private bool Equals(DetailedEvaluation other)
 {
     return Equals(_misses, other._misses) &&
            Equals(_hits, other._hits) &&
            Equals(_falseAlarms, other._falseAlarms) &&
            _eosCandidateCount == other._eosCandidateCount &&
            string.Equals(_paragraph, other._paragraph);
 }