We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test_quantized_training
Just noticed the test failure in master with cuda 11.8.0 pip (ubuntu20.04, clang, Python 3.11) job.
master
cuda 11.8.0 pip (ubuntu20.04, clang, Python 3.11)
=================================== FAILURES =================================== ___________________________ test_quantized_training ____________________________ def test_quantized_training(): X, y = make_synthetic_regression() ds = lgb.Dataset(X, label=y) bst_params = {"num_leaves": 15, "verbose": -1, "seed": 0} bst = lgb.train(bst_params, ds, num_boost_round=10) rmse = np.sqrt(np.mean((bst.predict(X) - y) ** 2)) bst_params.update( { "use_quantized_grad": True, "num_grad_quant_bins": 30, "quant_train_renew_leaf": True, } ) quant_bst = lgb.train(bst_params, ds, num_boost_round=10) quant_rmse = np.sqrt(np.mean((quant_bst.predict(X) - y) ** 2)) > assert quant_rmse < rmse + 6.0 E assert np.float64(2988.108396382464) < (np.float64(24.313125588236623) + 6.0) tests/python_package_test/test_engine.py:4579: AssertionError
LightGBM/tests/python_package_test/test_engine.py
Lines 4564 to 4579 in 4a60a53
I don't think we should do anything right now. Just posting this issue to count future failures similarly how we do in #4074.
cc @shiyu1994 @jameslamb
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just noticed the test failure in
master
withcuda 11.8.0 pip (ubuntu20.04, clang, Python 3.11)
job.LightGBM/tests/python_package_test/test_engine.py
Lines 4564 to 4579 in 4a60a53
I don't think we should do anything right now. Just posting this issue to count future failures similarly how we do in #4074.
cc @shiyu1994 @jameslamb
The text was updated successfully, but these errors were encountered: