sklearn.svm.classes error
Opened this issue · 6 comments
PRAJWAL2108 commented
"recognize_video.py", line 22, in
recognizer = pickle.loads(open("output/recognizer.pickle", "rb").read())
ModuleNotFoundError: No module named 'sklearn.svm.classes'
PavithranRick commented
Same issue. Mismatch between sklearn version. Can you please give the sklearn version originally used?
PavithranRick commented
Changing line 26 of train_model.py to this fixed it
f = open("output/recognizer.pickle", "wb")
PRAJWAL2108 commented
Ok, Thank You !!
himudigonda commented
Same issue. Mismatch between sklearn version. Can you please give the sklearn version originally used?
+1
SuchintK commented
Changing line 26 of train_model.py to this fixed it
f = open("output/recognizer.pickle", "wb")
Still not working
8999904177 commented
Changing line 26 of train_model.py to this fixed it
f = open("output/recognizer.pickle", "wb")
Thanks it worked out for me