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
I think the model variables in the multiclass classification visualization section need to be updated from just "model" to "sr_model" (first snippet) and "deep_model" (second snippet) below:
Great tutorial and notebooks! Thanks.
I think the model variables in the multiclass classification visualization section need to be updated from just "model" to "sr_model" (first snippet) and "deep_model" (second snippet) below:
y_pred_class = model.predict_classes(X_test, verbose=0)
y_test_class = np.argmax(y_test, axis=1)
print(classification_report(y_test_class, y_pred_class))
plot_confusion_matrix(model, X_test, y_test_class)
y_pred_class = model.predict_classes(X_test, verbose=0)
y_test_class = np.argmax(y_test, axis=1)
print(classification_report(y_test_class, y_pred_class))
plot_confusion_matrix(model, X_test, y_test_class)
The text was updated successfully, but these errors were encountered: