Lines Matching refs:Classifier
7 class Classifier(object):
10 Main Classifier object, used to classify things into similar sets.
23 Add a set to the classifier. Any iterable is accepted.
65 Add a a list of sets to the classifier. Any iterable of iterables is accepted.
88 The return value belongs to the Classifier object and should NOT
89 be modified while the classifier is still in use.
97 The return value belongs to the Classifier object and should NOT
98 be modified while the classifier is still in use.
106 The return value belongs to the Classifier object and should NOT
107 be modified while the classifier is still in use.
166 classifier = Classifier(sort=sort)
167 classifier.update(list_of_sets)
168 return classifier.getClasses(), classifier.getMapping()