While on splitting test data set the command mentioned crossvalidation is not working:
from sklearn.cross_validation import train_test_split
It is saying no such module error although I have installed scikit learn via
conda install -c anaconda scikit-learn
but the below import works fine
from sklearn.model_selection import train_test_split
Why is the initial import not working even though I have done everything??