You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in Isolated_Speech_Recognition.py, StratifiedShuffleSplit was imported from sklearn.cross_validation, I just make changes and import StratifiedShuffleSplit from sklearn.model_selection, to remove DeprecationWarning,
now I got the error:
Traceback (most recent call last):
File "Isolated_Speech_Recognition.py", line 269, in
_ = [model.train(X_train[y_train == y, :, :]) for m, y in zip(ms, ys)]
File "Isolated_Speech_Recognition.py", line 269, in
_ = [model.train(X_train[y_train == y, :, :]) for m, y in zip(ms, ys)]
NameError: name 'model' is not defined
The text was updated successfully, but these errors were encountered:
in Isolated_Speech_Recognition.py, StratifiedShuffleSplit was imported from sklearn.cross_validation, I just make changes and import StratifiedShuffleSplit from sklearn.model_selection, to remove DeprecationWarning,
now I got the error:
Traceback (most recent call last):
File "Isolated_Speech_Recognition.py", line 269, in
_ = [model.train(X_train[y_train == y, :, :]) for m, y in zip(ms, ys)]
File "Isolated_Speech_Recognition.py", line 269, in
_ = [model.train(X_train[y_train == y, :, :]) for m, y in zip(ms, ys)]
NameError: name 'model' is not defined
The text was updated successfully, but these errors were encountered: