Package | Description |
---|---|
messif.objects.classification |
Support for object classification.
|
messif.objects.classification.text |
Modifier and Type | Method and Description |
---|---|
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.add(C category)
Adds the given category to this classification.
|
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.add(C category,
float confidence)
Adds the given category with confidence to this classification.
|
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.addAll(ClassificationWithConfidence<C> classification)
Adds all the categories with confidence from the given classification into this.
|
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.addAll(java.lang.Iterable<?> categories,
boolean ignoreIncompatibleCategory)
Adds the categories provided by the
Iterable to this classification. |
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.addAll(java.lang.Iterable<?> categories,
float confidence,
boolean ignoreIncompatibleCategory)
Adds the categories provided by the
Iterable to this classification with the given confidence. |
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.addAll(java.util.Iterator<?> categories,
boolean ignoreIncompatibleCategory)
Adds the categories provided by the iterator to this classification.
|
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.addAll(java.util.Iterator<?> categories,
float confidence,
boolean ignoreIncompatibleCategory)
Adds the categories provided by the iterator to this classification with the given confidence.
|
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.addArray(java.lang.Object array,
boolean ignoreIncompatibleCategory)
Adds the categories from a static array to this classification.
|
ClassificationWithConfidenceBase<C> |
ClassificationWithConfidenceBase.addArray(java.lang.Object array,
float confidence,
boolean ignoreIncompatibleCategory)
Adds the categories from a static array to this classification with the given confidence.
|
Modifier and Type | Class and Description |
---|---|
class |
KeywordClassification<T>
Encapsulation object for the data on which the
KeywordClassifier operates. |
Modifier and Type | Method and Description |
---|---|
ClassificationWithConfidenceBase<T> |
KeywordClassification.add(T category,
float confidence) |