A BinaryClassifier that classifies based on scoring the current
input point. If the score is >= 0, the point is classified as class 1.
Otherwise, it is classified as class 0.
|
|
|
|
|
score(self,
input_point,
*args,
**kwds)
Return the score of an input point. |
source code
|
|
|
|
scores(self,
input_data,
*args,
**kwds)
Return an array of scores of an input dataset. |
source code
|
|
|
|
predict(self,
input_point,
*args,
**kwds)
Predict the output class of an input point. |
source code
|
|
|
Inherited from cla.Classifier:
get_error_rates,
test
|