Skip to content

Commit

Permalink
MAINT Support old cv/gs/lc until 0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
raghavrv committed Aug 11, 2015
1 parent 1a1c667 commit b2c6417
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sklearn/cross_validation.py
Expand Up @@ -37,7 +37,7 @@
"model_selection module into which all the refactored classes "
"and functions are moved. Also note that the interface of the "
"new CV iterators are different from that of this module. "
"Refer to model_selection for more info.", DeprecationWarning)
"This module will be removed in 0.19.", DeprecationWarning)


__all__ = ['KFold',
Expand Down
3 changes: 2 additions & 1 deletion sklearn/grid_search.py
Expand Up @@ -38,7 +38,8 @@

warnings.warn("This module has been deprecated in favor of the "
"model_selection module into which all the refactored classes "
"and functions are moved.", DeprecationWarning)
"and functions are moved. This module will be removed in 0.19.",
DeprecationWarning)


class ParameterGrid(object):
Expand Down
3 changes: 2 additions & 1 deletion sklearn/learning_curve.py
Expand Up @@ -18,7 +18,8 @@


warnings.warn("This module has been deprecated in favor of the "
"model_selection module into which all the functions are moved.",
"model_selection module into which all the functions are moved."
" This module will be removed in 0.19",
DeprecationWarning)


Expand Down

0 comments on commit b2c6417

Please sign in to comment.