-
Notifications
You must be signed in to change notification settings - Fork 977
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: No module named tensorflow #106
Comments
also facing , this error? |
Replace "import tensorflow as tf" with "import tensorflow.compat.v1 as tf" if you are using Tensorflow 2.0 or greater :) |
thanks @jod98 for your response and help import tensorflow.compat.v1 as tf could u please help me to overcome? |
I am having a similar same error. I am trying to convert my .csv file to a 'tfrecord' file. I was using tensorflow 2.0 but I heard that it wasn't supported for object_detection (what I am trying to do). I tried tensorflow 1.14 and 1.15 but still get an error. I am going to try used github repository branch for tensorflow 1.* and create my tfrecords file that way. I will let you know if I get it :) |
Getting the following error with TF 1.12.0. I was using 1.14.0 before and had issues.
|
Any one please help me out from the error which i couldn't overcome for a week???
after using the below command
python3 generate_tfrecord.py --csv_input=data/train_labels.csv --output_path=data/train.record --image_dir=images/
I received the following error
Traceback (most recent call last):
File "generate_tfrecord.py", line 16, in
import tensorflow as tf
ImportError: No module named tensorflow
To overcome this error????
The text was updated successfully, but these errors were encountered: