I follow the instructions of the Deep Learning course from Google using TensorFlow. Sorry, I'm stuck with this book right now. I work in docker vm with all destination code loaded as described here .
When I do all the imports, everything works, except for the following line:
from sklearn.linear_model import LogisticRegression
it produces the following error:
>>> from sklearn.linear_model import LogisticRegression Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named sklearn.linear_model
This SO answer sounds promising, but I did not find the source sklearn directory.
Any help is greatly appreciated.
source share