|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Phrase | |
---|---|
de.aitools.ie.keyphraseextraction |
Uses of Phrase in de.aitools.ie.keyphraseextraction |
---|
Methods in de.aitools.ie.keyphraseextraction that return Phrase | |
---|---|
Phrase |
Phrase.appendWord(java.lang.String word)
Adds a new word to the end of this phrase. |
Phrase |
Phrase.prependWord(java.lang.String word)
Adds a new word to the beginning of this phrase. |
Methods in de.aitools.ie.keyphraseextraction that return types with arguments of type Phrase | |
---|---|
java.util.SortedSet<Phrase> |
KeyphraseExtractor.extract(java.lang.String text)
Extracts all key phrases from the given text with score normalization to the range of [0, 1]. |
java.util.SortedSet<Phrase> |
FrequentPhraseExtractor.extract(java.lang.String text)
Extracts phrases of size one, also known as unigrams. |
java.util.SortedSet<Phrase> |
KeyphraseExtractor.extract(java.lang.String text,
int k)
Extracts at most the k highest rated key phrases from the given text with score normalization to the range of [0, 1]. |
java.util.SortedSet<Phrase> |
FrequentPhraseExtractor.extract(java.lang.String text,
int k)
Extracts phrases of size one, also known as unigrams. |
java.util.SortedSet<Phrase> |
KeyphraseExtractor.extract(java.lang.String text,
int k,
boolean normalize)
Extracts at most the k highest rated key phrases from the given text with or without score normalization to the range of [0, 1]. |
java.util.SortedSet<Phrase> |
FrequentPhraseExtractor.extract(java.lang.String text,
int k,
boolean normalize)
Extracts phrases of size one, also known as unigrams. |
java.util.SortedSet<Phrase> |
KeyphraseExtractor.extract(java.lang.String text,
int k,
int phraseLength,
boolean normalize)
Extracts at most the k highest rated key phrases from the given text with or without score normalization to the range of [0, 1]. |
static java.util.SortedSet<Phrase> |
KeyphraseExtractor.getTopPhrases(java.util.Set<Phrase> phrases,
int k)
Extracts the k highest rated phrases. |
Methods in de.aitools.ie.keyphraseextraction with parameters of type Phrase | |
---|---|
int |
Phrase.compareTo(Phrase phrase)
Compares this object with the specified object for order. |
Method parameters in de.aitools.ie.keyphraseextraction with type arguments of type Phrase | |
---|---|
static java.util.SortedSet<Phrase> |
KeyphraseExtractor.getTopPhrases(java.util.Set<Phrase> phrases,
int k)
Extracts the k highest rated phrases. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |