| Package | Description |
|---|---|
| com.aliasi.classify |
Classes for classifying data and evaluation.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ConditionalClassification
A
ConditionalClassification is a scored classification
which estimates conditional probabilities of categories given an
input. |
class |
JointClassification
A
JointClassification is a conditional classification
derived from a joint probability assignment to each category and
the object being classified. |
| Modifier and Type | Method and Description |
|---|---|
ScoredClassification |
PerceptronClassifier.classify(E in)
Return the scored classification for the specified input.
|
ScoredClassification |
KnnClassifier.classify(E in)
Return the k-nearest-neighbor classification result for the
specified input object.
|
ScoredClassification |
ScoredClassifier.classify(E input)
Returns the n-best scored classification for the specified input.
|
ScoredClassification |
BigVectorClassifier.classify(Vector x)
Return a scored classification consisting of the top results
for the specified vector input.
|
static ScoredClassification |
ScoredClassification.create(List<ScoredObject<String>> categoryScores)
Factory method which returns a scored classification from the
list of scored categories.
|
static ScoredClassification |
ScoredClassification.create(ScoredObject<String>[] categoryScores)
Deprecated.
Use
create(List) instead. |
Copyright © 2019 Alias-i, Inc.. All rights reserved.