Skip to content
Snippets Groups Projects
Commit 30cba7db authored by Fabian Pedregosa's avatar Fabian Pedregosa
Browse files

Add a compatibility layer for some modules.

OK, there are a bunch of ``import *``, but I don't see any other
reasonable way ...
parent ddf4b721
No related branches found
No related tags found
No related merge requests found
import warnings
warnings.warn('scikits.learn namespace is deprecated, please use sklearn instead')
from sklearn import *
import warnings
warnings.warn('scikits.learn is deprecated, please use sklearn')
from sklearn.cluster import *
\ No newline at end of file
import warnings
warnings.warn('scikits.learn is deprecated, please use sklearn')
from sklearn.datasets import *
\ No newline at end of file
import warnings
warnings.warn('scikits.learn namespace is deprecated, please use sklearn instead')
from sklearn.decomposition import *
\ No newline at end of file
import warnings
warnings.warn('scikits.learn namespace is deprecated, please use sklearn instead')
from sklearn.grid_search import *
\ No newline at end of file
import warnings
warnings.warn('scikits.learn is deprecated, please use sklearn')
from sklearn.linear_model import *
\ No newline at end of file
import warnings
warnings.warn('scikits.learn is deprecated, please use sklearn')
from sklearn.svm import *
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment