Uses of Interface
edu.mit.jmwe.detect.IHasMWEDetector

Packages that use IHasMWEDetector
edu.mit.jmwe.detect Provides MWE detector API, a baseline detector, plus numerous other detector implementations. 
 

Uses of IHasMWEDetector in edu.mit.jmwe.detect
 

Subinterfaces of IHasMWEDetector in edu.mit.jmwe.detect
 interface IMWEDetectorFilter
          An interface for MWE detectors that act as filters for other MWE detectors
 interface IMWEDetectorResolver
          An interface for MWE detectors that resolve conflicts between identified MWEs from other detectors.
 

Classes in edu.mit.jmwe.detect that implement IHasMWEDetector
 class ConstrainLength
          A detector filter that constrains MWEs by length.
 class Continuous
          A detector that filters the results of its backing detector to return only those MWEs whose parts are continuous in the sentence.
 class FilterByScore
          Removes all MWEs from the wrapped detector's results whose score is "no good", where "no good" is implementation dependent.
 class HasMWEDetector
          Abstract base class for MWE Detectors that wrap, and constraint the output of, other MWE detectors.
 class InflectionLookup
          Uses a given MWE detector to find multi-word expressions in a sentence but discards inflected multi-word expressions whose form is not listed as a valid inflected form by its associated IMWEDesc.
 class InflectionPattern
          Uses a given IMWEDetector to find multi-word expressions in a sentence but discards inflected multi-word expressions if the inflected form does not correspond to an inflection pattern give by a set of inflection rules.
 class InOrder
          Filters the output of a given MWE detector, removing those MWEs whose parts appear do not appear in the sentence in the same order as they appear in the MWE description.
 class Leftmost
          A resolver that chooses the leftmost MWE.
 class LeskAtLeast
          A filter detector that throws out MWEs whose lesk score is less than some value.
 class LMLR
          Stands for "Longest Match, Left to Right".
 class Longest
          A detector resolver that chooses the longest MWEs in a set of conflicts.
 class MoreFrequentAsMWE
          Filters the results of its backing detector to include only those MWEs whose parts, in a continuous run of tokens, are more often marked as an MWE than as individual tokens.
 class NoInflection
          A detector that filters the results of its backing detector to return only those MWEs that are not inflected.
 class NoProperNouns
          A detector that filters all proper noun MWEs from the results of its backing detector.
 class ResolveByScore
          Abstract base class for MWE detector resolvers that use a simple score to resolve conflicts.
 class SmallestVariance
          A detector resolver that chooses the MWE with the smallest variance.
 



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