Skip to content

Commit

Permalink
adressing PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
vnherdeiro committed Aug 28, 2024
1 parent 41c4051 commit c4ab1ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python_package_test/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -1531,7 +1531,7 @@ def test_distributed_quantized_training(tmp_path, cluster):
with Client(cluster) as client:
X, y, w, _, dX, dy, dw, _ = _create_data(objective="regression", output="array")

np.savetxt(tmp_path / "data_dask.csv", np.hstack([y[:, None], X]), fmt="%f,%f,%f,%f,%f")
np.savetxt(tmp_path / "data_dask.csv", np.hstack([np.array([y]).T, X]), fmt="%f,%f,%f,%f,%f")

params = {
"boosting_type": "gbdt",
Expand Down

0 comments on commit c4ab1ff

Please sign in to comment.