Whenever I try to use "sklearn", I get the following error:
>>>from sklearn.tree import DecisionTreeRegressor
/home/ec2-user/anaconda2/envs/argosv2/lib/python3.6/site-packages/sklearn/externals/joblib/externals/cloudpickle/cloudpickle.py:47: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses import imp
I am not sure if it should bother me, because program still working (of course we can ignore warning deprecation in Python) - but is this safe ?
Also, this following is not giving any warning for some reason
import imp
Thank you