We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0169094 commit c96e4efCopy full SHA for c96e4ef
tests/test_FE.py
@@ -17,6 +17,6 @@ def predict(self, X):
17
def test_fit_predict():
18
model = FE(DummyEstimator)
19
model.fit(np.ones((100,10)), np.ones(100),
20
- index=[range(80), range(80, 100)])
+ src_index=range(80), tgt_index=range(80, 100))
21
y_pred = model.predict(np.ones((100,10)))
22
assert np.all(y_pred == np.zeros(100))
0 commit comments