| Package | Description |
|---|---|
| com.aliasi.chunk |
Classes for extracting meaningful chunks (spans) of text.
|
| com.aliasi.lm |
Classes for character- and token-based language models.
|
| com.aliasi.spell |
Classes for spelling correction and edit distance.
|
| com.aliasi.tag |
Classes and interfaces for sequence tagging, including evaluators.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectToCounterMap<Integer> |
ChunkerEvaluator.nBestEvaluation()
Returns the n-best evaluation in the form of a mapping from
ranks to the number of times the reference chunking was that
rank in the evaluation.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectToCounterMap<int[]> |
TrieIntSeqCounter.nGramCounts(int nGram,
int minCount)
Returns a histogram of counts for n-grams of integers of
the specified length, with a count of at least the specified
minimum count.
|
ObjectToCounterMap<String> |
TrieCharSeqCounter.topNGrams(int nGramOrder,
int maxReturn)
Returns a counter of occurrences of the highest frequency
n-grams of a specified n-gram order.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectToCounterMap<String> |
TokenizedDistance.termFrequencyVector(CharSequence cSeq)
Return the mapping from terms to their counts derived from
the specified character sequence using the tokenizer factory
in th is class.
|
ObjectToCounterMap<String> |
TrainSpellChecker.tokenCounter()
Returns the counter for the tokens in the training set.
|
| Constructor and Description |
|---|
SpellEvaluator(SpellChecker checker,
ObjectToCounterMap<String> tokenCounter)
Construct a spelling evaluator for the specified spell checker
with the specified token counts.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectToCounterMap<Integer> |
TaggerEvaluator.inputSizeHistogram()
Returns a mapping from integers to the number of test cases
with that many tokens.
|
ObjectToCounterMap<Integer> |
NBestTaggerEvaluator.nBestHistogram()
Return the histogram of results mapping ranks to the number
of test cases where the correct result was at that rank.
|
Copyright © 2016 Alias-i, Inc.. All rights reserved.