Skip to content
Snippets Groups Projects
Commit 76fe905f authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

Fixed typo.

parent d60f777c
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment