priiyaanjaalii0611 / ASL_to_English

Reads your hand signs and translates them to English words using Tensorflow object detection API
910 stars 217 forks source link

gfile error #3

Open rishikesh013 opened 2 years ago

rishikesh013 commented 2 years ago

with tf.gfile.GFile(path, 'r') as fid: AttributeError: module 'tensorflow' has no attribute 'gfile'. Did you mean: 'fill'?

AgentXMan commented 2 years ago

with tf.gfile.GFile(path, 'r') as fid: AttributeError: module 'tensorflow' has no attribute 'gfile'. Did you mean: 'fill'?

hi, i think you have to replace tf.gfile.GFile to tf.io.gfile.Gfile since its using the old version of tensorflow

here use this: https://stackoverflow.com/questions/55591437/attributeerror-module-tensorflow-has-no-attribute-gfile

ans2 ans1