X.copy() in the process method (#78)

* X.copy() in the transformer method.

* update version 0.3.4
This commit is contained in:
Gian Pio Domiziani
2021-04-24 02:14:29 +02:00
committed by GitHub
parent b6f57894ef
commit 068fb9f5c2
3 changed files with 11 additions and 6 deletions

View File

@@ -239,6 +239,8 @@ class TestAutoML(unittest.TestCase):
y = np.array([0, 1])
automl_experiment.fit(X_train=fake_df, X_val=fake_df, y_train=y, y_val=y, **automl_settings)
y_pred = automl_experiment.predict(fake_df)
def test_regression(self):
automl_experiment = AutoML()