happyle1004
Results
1
issues of
happyle1004
If I use: model = SklearnModel() model.fit(X_train, y_train.to_numpy()) I got 'numpy.ndarray' object has no attribute 'normalizing_scale' this error message. If I use: model = SklearnModel model.fit(X_train, y_train.to_numpy()) I got 'fit()...