model = model.fit(X_train, y_train) print(model) y_pred = model.predict(X_test) print(accuracy_score(y_expect, y_pred))