-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
python: always assign best_score after train #890
Conversation
This commit will regain backward compatibility that has been broken after 015c8ff.
The travis test on OSX often met time-out error. Can we solve it ? |
This is mostly because Travis has lack of OS X instances... 😢 |
Yeah, this is sad, but I think we cannot do anything with it (only reduce number of tests on OSX) 😞 |
@guolinke To avoid timeout, can we run several tests in parallel? |
@guolinke @henry0312 @Laurae2 Can we somehow benefit from caching on OSX? |
@StrikerRUS yeah, most time of OSX test are used on package installation. |
@guolinke Unfortunately, I have little knowledge of *nix systems, so, probably I'll not be able to do it without your help. btw, maybe it's better to create a separate issue for Travis speedup? |
As I understand, we should cache the folder (which one?) with installed packages and at the beginning of build check these packages are already installed. |
According to the latest PR, instance just clones git repo and connection to it is lost: I remember cases when instance even cannot be started at all. So, all our tricks with cache will not be launched... |
@StrikerRUS I think it freezes. |
I don't know, but it seems a problem of Travis. |
This commit will regain backward compatibility that has been broken after 015c8ff.
This commit will regain backward compatibility that has been broken
after 015c8ff.
When not using early_stopping,
best_score
has scores calculated with all trees.I'm sorry that I overlooked #870 (comment).