a770dbd27f41d90205bf69d2cd86991d6f887e90,tests/model_selection/test_incremental.py,,test_basic,#Any#Any#Any#Any#,46
Before Change
yield gen.sleep(0.01)
// smoke test for ndarray X_test and y_test
X_test, y_test = yield c.compute([X_test, y_test])
info, models, history, best = yield fit(
model,
param_list,
After Change
// smoke test for ndarray X_test and y_test
X_test = await c.compute(X_test)
y_test = await c.compute(y_test)
info, models, history, best = await fit(
model,
param_list,
X_train,
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: dask/dask-ml
Commit Name: a770dbd27f41d90205bf69d2cd86991d6f887e90
Time: 2020-05-28
Author: stsievert@users.noreply.github.com
File Name: tests/model_selection/test_incremental.py
Class Name:
Method Name: test_basic
Project Name: githubharald/SimpleHTR
Commit Name: a91b4632b2e85bc3d0df94381562546db7a194b5
Time: 2021-02-17
Author: harald@newpc.com
File Name: src/Model.py
Class Name: Model
Method Name: inferBatch
Project Name: dask/dask-ml
Commit Name: a770dbd27f41d90205bf69d2cd86991d6f887e90
Time: 2020-05-28
Author: stsievert@users.noreply.github.com
File Name: tests/model_selection/test_incremental.py
Class Name:
Method Name: _test_search_basic