public class Corpus
extends com.ibm.cloud.sdk.core.service.model.GenericModel
Modifier and Type | Class and Description |
---|---|
static interface |
Corpus.Status
The status of the corpus: * `analyzed`: The service successfully analyzed the corpus.
|
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
error |
protected java.lang.String |
name |
protected java.lang.Long |
outOfVocabularyWords |
protected java.lang.String |
status |
protected java.lang.Long |
totalWords |
Constructor and Description |
---|
Corpus() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getError()
Gets the error.
|
java.lang.String |
getName()
Gets the name.
|
java.lang.Long |
getOutOfVocabularyWords()
Gets the outOfVocabularyWords.
|
java.lang.String |
getStatus()
Gets the status.
|
java.lang.Long |
getTotalWords()
Gets the totalWords.
|
protected java.lang.String name
@SerializedName(value="total_words") protected java.lang.Long totalWords
@SerializedName(value="out_of_vocabulary_words") protected java.lang.Long outOfVocabularyWords
protected java.lang.String status
protected java.lang.String error
public java.lang.String getName()
The name of the corpus.
public java.lang.Long getTotalWords()
The total number of words in the corpus. The value is `0` while the corpus is being processed.
public java.lang.Long getOutOfVocabularyWords()
The number of OOV words in the corpus. The value is `0` while the corpus is being processed.
public java.lang.String getStatus()
The status of the corpus: * `analyzed`: The service successfully analyzed the corpus. The custom model can be trained with data from the corpus. * `being_processed`: The service is still analyzing the corpus. The service cannot accept requests to add new resources or to train the custom model. * `undetermined`: The service encountered an error while processing the corpus. The `error` field describes the failure.
public java.lang.String getError()
If the status of the corpus is `undetermined`, the following message: `Analysis of corpus 'name' failed. Please try adding the corpus again by setting the 'allow_overwrite' flag to 'true'`.