Uses of Interface
edu.mit.jmwe.detect.score.IScorer

Packages that use IScorer
edu.mit.jmwe.detect Provides MWE detector API, a baseline detector, plus numerous other detector implementations. 
edu.mit.jmwe.detect.score Provides various scoring mechanisms that can be used by subclasses of the FilterByScore and ResolveByScore detectors. 
 

Uses of IScorer in edu.mit.jmwe.detect
 

Methods in edu.mit.jmwe.detect that return IScorer
protected
<T extends IToken>
IScorer<IMWE<T>>
SmallestVariance.getScorer(List<T> sentence)
           
protected abstract
<T extends IToken>
IScorer<IMWE<T>>
ResolveByScore.getScorer(List<T> sentence)
          Returns the scoring function for this filter.
protected
<T extends IToken>
IScorer<IMWE<T>>
MoreFrequentAsMWE.getScorer(List<T> sentence)
           
protected
<T extends IToken>
IScorer<IMWE<T>>
Longest.getScorer(List<T> scorer)
           
protected
<T extends IToken>
IScorer<IMWE<T>>
LeskAtLeast.getScorer(List<T> sentence)
           
protected
<T extends IToken>
IScorer<IMWE<T>>
Leftmost.getScorer(List<T> sentence)
           
protected abstract
<T extends IToken>
IScorer<IMWE<T>>
FilterByScore.getScorer(List<T> sentence)
          Returns a scoring function for the specified sentence.
protected
<T extends IToken>
IScorer<IMWE<T>>
ConstrainLength.getScorer(List<T> sentence)
           
 

Uses of IScorer in edu.mit.jmwe.detect.score
 

Classes in edu.mit.jmwe.detect.score that implement IScorer
 class AbstractScorer<T>
          Base class for scorers that provides the comparator functionality.
 class FractionAsMWEScore<T extends IToken>
          A scorer that scores with the fraction of times it appears marked as an MWE, as opposed to a run of unmarked tokens.
 class LengthScore<T extends IToken>
          Scores a MWE with its length
 class LeskScore<T extends IToken>
          Scores an object with its lesk-score overlap with dictionary glosses.
 class StartingIndexScore<T extends IToken>
          Scores an MWE with its starting index.
 class VarianceScore<T extends IToken>
          Scores each MWE with its index variance.
 



Copyright © 2011 Massachusetts Institute of Technology. All Rights Reserved.