Taddeüs Kroes 14 anni fa
parent
commit
76fe905fe4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/Classifier.py

+ 1 - 1
src/Classifier.py

@@ -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):