|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IMWEIndex | |
---|---|
edu.mit.jmwe.detect | Provides MWE detector API, a baseline detector, plus numerous other detector implementations. |
edu.mit.jmwe.harness.result.error | Provides error detectors to evaluate the results of a test harness run |
edu.mit.jmwe.index | Provides the MWE index interfaces and default implementations, which allow one to look up an MWE given one of its parts. |
Uses of IMWEIndex in edu.mit.jmwe.detect |
---|
Methods in edu.mit.jmwe.detect that return IMWEIndex | |
---|---|
protected static IMWEIndex |
StopWords.getStopWordIndex()
Creates, opens, and returns a new stop word index. |
Constructors in edu.mit.jmwe.detect with parameters of type IMWEIndex | |
---|---|
Baseline(IMWEIndex index)
Constructs the BaselineDetector from a Exhaustive and
ProperNouns . |
|
Consecutive(IMWEIndex index)
Constructs the detector from the given index. |
|
Exhaustive(IMWEIndex index)
Constructs the simple lookup detector from the given index of multi-word expressions. |
|
StopWords(IMWEIndex index)
Constructs this detector from the given stop word MWE index. |
|
TrulyExhaustive(IMWEIndex index)
Constructs a new detector that looks up everything, stop words included. |
Uses of IMWEIndex in edu.mit.jmwe.harness.result.error |
---|
Fields in edu.mit.jmwe.harness.result.error declared as IMWEIndex | |
---|---|
protected IMWEIndex |
MissingFromIndex.index
|
Methods in edu.mit.jmwe.harness.result.error with parameters of type IMWEIndex | ||
---|---|---|
static
|
MissingFromIndex.isProblem(IMWE<T> mwe,
IMWEIndex index)
Determines if the specified MWE is a problem, relative to the specified index, according to this error class. |
Constructors in edu.mit.jmwe.harness.result.error with parameters of type IMWEIndex | |
---|---|
MissingFromIndex(IMWEIndex index)
Constructs a new error detector that looks in the specified index for missing MWEs |
Uses of IMWEIndex in edu.mit.jmwe.index |
---|
Classes in edu.mit.jmwe.index that implement IMWEIndex | |
---|---|
class |
InMemoryMWEIndex
The default abstract implementation of IMWEIndex . |
class |
MWEIndex
Simple implementation of IMWEIndex that reads an index, possibly with internal comments
prefixed by '//' or ';;', from a URL. |
Methods in edu.mit.jmwe.index that return IMWEIndex | |
---|---|
IMWEIndex |
IHasMWEIndex.getMWEIndex()
Returns the index this object wraps. |
IMWEIndex |
HasMWEIndex.getMWEIndex()
|
Methods in edu.mit.jmwe.index with parameters of type IMWEIndex | |
---|---|
protected IMWEDetector |
IndexBuilder.getUmarkedDetector(IMWEIndex index)
Creates a detector that can be used to find sequences of tokens (inflected or not) that match an MWE description, but are not marked as an MWE. |
static void |
IndexBuilder.writeDataFile(IMWEIndex index,
OutputStream out,
Iterable<String> headerLines)
Writes the MWEIndex data to the specified file. |
static void |
IndexBuilder.writeIndexFile(IMWEIndex index,
OutputStream out,
Iterable<String> headerLines)
Writes the MWEIndex index to the specified file. |
Constructors in edu.mit.jmwe.index with parameters of type IMWEIndex | |
---|---|
HasMWEIndex(IMWEIndex index)
Constructs a new object that has a pointer to an MWE index |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |