Commit 76fe905f authored by Taddeüs Kroes's avatar Taddeüs Kroes

Fixed typo.

parent d60f777c
......@@ -39,7 +39,7 @@ class Classifier:
problem = svm_problem(self.c, features)
self.model = svm_model(problem, self.param)
# Add prediction fucntion that returns a numeric class prediction
# Add prediction function that returns a numeric class prediction
self.model.predict = lambda self, x: svm_predict([0], [x], self)[0][0]
def classify(self, character):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment