I am a beginner and I just started with machine learning. I am trying to import classes like imputer
from sklearn
but i am unable to do it.
from sklearn.preprocessing import Imputer,LabelEncoder,OneHotEncoder,StandardScaler
ImportError: cannot import name 'version' from 'sklearn.externals.joblib' (C:\ProgramData\Anaconda3\lib\site-packages\sklearn\externals\joblib__init__.py)
I had the same problem. I have replaced
from sklearn.externals import joblib
with
import joblib
and it works fine in Python 3.7.2