Jelajahi Sumber

Fixed typo.

Taddeüs Kroes 14 tahun lalu
induk
melakukan
76fe905fe4
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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):