doing a deep learning tutorial and my python cannot find that module.
from logistic_sgd import LogisticRegression, load_data
ImportError: No module named log
are you using the Theano library, if you are, that means your project cannot find the Theano library, use
sys.path.append(r'~/TheanoDL')
to declare it at the beginning of your project, change the path of it with your Theano is in.
Note that it works for a project with a customed Theano library.(my situation)
Best luck!