We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8996351 commit 140a66cCopy full SHA for 140a66c
projects/app_hand_gesture_classifier/LinearSVC.py
@@ -36,7 +36,7 @@ def load(cls, filename: str):
36
self = cls(
37
C=float(npzfile["C"]),
38
learning_rate=float(npzfile["learning_rate"]),
39
- max_iter=float(npzfile["max_iter"])
+ max_iter=int(npzfile["max_iter"])
40
)
41
self.scaler.mean = npzfile["scaler_mean"]
42
self.scaler.std = npzfile["scaler_std"]
0 commit comments