#include <text_classifier.h>
HTML text classifier object for text classification.
- See also
- TextClassification, TextClassificationResult, HtmlText, CategoriesInfo
The following sample shows the text classification workflow:
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 33 of file text_classifier.h.
◆ classify()
The HTML Text Classification method. The method takes an initialized HtmlText object and returns the results in a TextClassificationResults class.
An HtmlText object can be classified as one of the following categories:
-
CATEGORY_ID_TEXT_PORNOGRAPHY
-
CATEGORY_ID_TEXT_WAREZ
-
CATEGORY_ID_TEXT_GAMBLING
-
CATEGORY_ID_TEXT_ANONYMOUS_PROXIES
-
CATEGORY_ID_TEXT_ILLEGAL_DRUGS
-
CATEGORY_ID_TEXT_WEAPONS
- Parameters
-
[in] | aText | The HTML text object to be classified |
[out] | aTextResults | The results of the text classification |
- Returns
- DCA_SUCCESS or one of the following error codes
- See also
- TextClassification, Text, TextClassificationResult
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.