-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
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
Error raised when predicting or dumping count:poisson model #1236
Comments
Line 168 in 49bbd72
Could you please show how to reproduce your error? |
Yes. But the Configure() is not called in CLIDump2Text() and CLIPredict(). I guess the fix should be add a line after Line 271 in 49bbd72
Line 297 in 49bbd72
learner->Configure(param.cfg); Hope this will help. |
yangs16
added a commit
to yangs16/xgboost
that referenced
this issue
Jun 6, 2016
tqchen
pushed a commit
that referenced
this issue
Jun 8, 2016
tlorieul
pushed a commit
to tlorieul/xgboost
that referenced
this issue
Jun 8, 2016
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
terminate called after throwing an instance of 'dmlc::ParamError'
what(): Required parameter max_delta_step of float is not presented
Aborted
An easy fix is to add a config item after the line 265 in src/learner.cc, e.g.
cfg_["max_delta_step"] = common::ToString(0.7);
Thanks.
The text was updated successfully, but these errors were encountered: