-
Notifications
You must be signed in to change notification settings - Fork 347
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
When running your code I got a error #2
Comments
Looks like a virtualenv issue. Can you try reinstalling tf? |
|
@dirkk0 In my case, I've to downgrade Python 3.8 to 3.7 to be able to install tensorflow==1.14 |
For those that might have the same issue and dont want to downgrade anything I found this solution: |
instead of downgrading the Tf version trace the error, go to the line causing it, and then write tf.compat.v1.GraphDef |
Needed to make the following 3 changes in the seg.py file to be compatible with Py 3.11.6, tf 2.16.1, and pillow 10.2.0:
See updated file attached. Change the .txt back to .py after downloading. |
Hi @susheelsk, I got an error running your code.
C:\image-background>python seg.py /input/0001.jpg /output/0001.png 1
Traceback (most recent call last):
File "seg.py", line 89, in
MODEL = DeepLabModel(modelType)
File "seg.py", line 25, in init
graph_def = tf.GraphDef.FromString(open(tarball_path + "/frozen_inference_graph.pb", "rb").read())
AttributeError: module 'tensorflow' has no attribute 'GraphDef'
Can you help?
The text was updated successfully, but these errors were encountered: