-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[MRG] Add few more tests + Documentation for re-entrant cross-validation estimators #7823
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
Merged
jnothman
merged 19 commits into
scikit-learn:master
from
raghavrv:model_selection_touchups
Jul 16, 2017
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
3e70301
DOC Add NOTE that unless random_state is set, split will not be ident…
raghavrv 791766f
TST use np.testing.assert_equal for nested lists/arrays
raghavrv 5b226fe
TST Make sure cv param can be a generator
raghavrv 4f18825
DOC rank_ becomes a link when rendered
raghavrv 9f48382
Use test_...
raghavrv 29eef94
Remove blank line; Add if shuffle is True
raghavrv cb5ff5d
Fix tests
raghavrv 1c6d169
Explicitly test for GeneratorType
raghavrv d355dca
TST Add the else clause
raghavrv dff2f5a
TST Add comment on usage of np.testing.assert_array_equal
raghavrv 0b1f749
Merge master
raghavrv af8107d
TYPO
raghavrv a2fcd33
MNT Remove if ;
raghavrv 1469adb
Merge master
raghavrv 91963f4
Merge branch 'master' into model_selection_touchups
raghavrv f02d50e
Address Joel's comments
raghavrv 8a91359
merge the identical points in doc
raghavrv a234697
DOC address Andy's comments
raghavrv b4c633f
Move comment to before the check for generator type
raghavrv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be sure, we've not got anything that ensures this will remain a generator. Either use a generator expression or test for its type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!