public static enum AudioAnnotator.AudioAnnotatorType extends Enum<AudioAnnotator.AudioAnnotatorType>
| Enum Constant and Description |
|---|
BAYES
Naive Bayes annotator
|
KNN
KNN Annotator
|
| Modifier and Type | Method and Description |
|---|---|
abstract IncrementalAnnotator<DoubleFV,String> |
getAnnotator()
Returns a annotator that can train a DoubleFV feature with a specific
String label.
|
static AudioAnnotator.AudioAnnotatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioAnnotator.AudioAnnotatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioAnnotator.AudioAnnotatorType KNN
public static final AudioAnnotator.AudioAnnotatorType BAYES
public static AudioAnnotator.AudioAnnotatorType[] values()
for (AudioAnnotator.AudioAnnotatorType c : AudioAnnotator.AudioAnnotatorType.values()) System.out.println(c);
public static AudioAnnotator.AudioAnnotatorType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic abstract IncrementalAnnotator<DoubleFV,String> getAnnotator()
IdentityFeatureExtractor feature extractors so the audio
features must be extracted before hand.