#include <text_classification_result.h>
Single result of a text classification.
Encapsulates a single result of a text classification
- See also
- TextClassification, HtmlTextClassifier, TextClassificationResults, HtmlText, CategoriesInfo
myHtmlTextClassifier.
classify( myHtmlText, myTextClassificationResults );
if( !myResult ) {
cout << "Received error from Text Classification (Error code: " <<
return;
}
cout << "No categories found for given HTML data." << endl;
return;
}
myTextClassificationResults[ i ];
cout << "Got result #" << (i+1) << " category id:" <<
myTCResult.
id() <<
", Score:" <<
myTCResult.
score() << endl;
}
Definition at line 27 of file text_classification_result.h.
|
double | score () const |
| Returns the score of the classification (if any), range is from 0.0 to 1.0.
|
|
DCA_CATEGORY_ID_TYPE | id () const |
| Returns the category id of the classification (if any).
|
|
The documentation for this class was generated from the following file:
Single result of a text classification.
HtmlTextClassifier createHtmlClassifier() const
Creates a HtmlTextClassifier that is used to classify HtmlText objects.
double score() const
Returns the score of the classification (if any), range is from 0.0 to 1.0.
bool isCategorized() const
Returns whether there are any results for the text classification.
DCA_SIZE_TYPE size() const
Returns the number of results in the container.
static HtmlText create(const DcaInstance &aDcaInstance, const std::string &htmlContent)
Creates an HTML text object, used as an input parameter for text classification.
HTML text classifier object for text classification.
FunctionResult classify(const HtmlText &aText, TextClassificationResults &aTextResults) const
The HTML Text Classification method. The method takes an initialized HtmlText object and returns the ...
DCA_CATEGORY_ID_TYPE id() const
Returns the category id of the classification (if any).
Encapsulates an HTML text object.
Overall results of a text classification.
static TextClassification create(const DcaInstance &aDcaInstance, const License &aLicense)
Initializes the TextClassification module.
The HTML Text Classification module class.