I have been running a particular python script for some time. All of the script had been running perfectly fine (including in Jupyter) for many months before this. Now, some
This issue happens when I import sklearn PCA before numpy (not sure reverse the sequence will solve the problem)
But later I solved the issue by reinstalling numpy and mkl:
conda install numpy
and
conda install -c intel mkl
install library with conda instead pip this work for me
Reinstall your library with conda instead of pip.
To solve this problem, just upgrade the numpy library using this following command :
conda install numpy if you are using anaconda
or
pip install -U numpy if not
I tried conda install tensorflow which solved my problem.
conda install -c anaconda keras
this command worked for me