I am trying to do:
from sklearn.model_selection import cross_validate
as mentioned here . But get the error:
ImportError: cannot import name 'cross_validate'
Everything else at Sklearn seems to work fine, it's just that bit. The error even occurs when I run this line and nothing else.
source
share