-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
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
Can saved binary file be used if max_bin changes? #3577
Comments
The max_bin will be fixed after save_binary, and you cannot update it. |
Fixed via #3592. |
This issue has been automatically locked since there has not been any recent activity since it was closed. To start a new related discussion, open a new issue at https://github.com/microsoft/LightGBM/issues including a reference to this. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm modifying the source code to add a new task "save_binary" to prepare data before running parameter tuning. The python package's
Dataset.save_binary
uses too much memory, thus I'd rather do it using cli version withtwo_round=true
andforce_col_wise=true
.I see
max_bin
andBinMapper
are saved in binary file. So I'm wondering whether binary file can be reused if I change themax_bin
parameter to a different value than when save the file?The text was updated successfully, but these errors were encountered: