Module api
source code
Interfaces for labeling tokens with category labels (or class labels).
ClassifierI is a standard interface for single-category classification, in which:
-
The set of categories is known.
-
The number of categories is finite.
-
Each text belongs to exactly one category.
MultiClassifierI is a standard interface for
multi-category classification
, in which:
-
The set of categories is known.
-
The number of categories is finite.
-
Each text belongs to zero or more categories.
|
ClassifierI
A processing interface for labeling tokens with a single category
label (or class).
|
|
MultiClassifierI
A processing interface for labeling tokens with zero or more
category labels (or labels).
|