-
Notifications
You must be signed in to change notification settings - Fork 220
Description
I suspect this may have to do with newer versions of tensorflow and python but not really sure. When I click run on an example I get the following errors:
I assume that this one is due to not having the gpu version of tensorflow installed. This doesn't seem to be a show stopper though. But I am currently attempting to fix this through
pip install tensorflow-gpu
2020-06-10 20:32:32.912840: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'cudart64_101.dll'; dlerror: cudart64_101.dll not found 2020-06-10 20:32:32.913156: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
This is the error that I believe keeps the examples from running. Is this because MNIST was deprecated or is it just a bad call somewhere:
Traceback (most recent call last):
File "C:\Users\bbbb\AppData\Local\Temp/main.py", line 5, in
from tensorflow.examples.tutorials.mnist import input_data as minst_input_data
ModuleNotFoundError: No module named 'tensorflow.examples.tutorials'