머신러닝,딥러닝

AttributeError: module 'tensorflow' has no attribute 'python_io' 에러 해결하기

mcdn 2023. 5. 17. 11:14
반응형

 

 

 

AttributeError: module 'tensorflow' has no attribute 'python_io

 

위와 같은 코드를 썼는데, 에러가 났다. 

 

 

 

AttributeError: module 'tensorflow' has no attribute 'python_io'

 

 

 

해결방법 : tf.compat.v1 을 추가하기 

 

tf.compat.v1 을 추가하기!! 

 

이렇게 되면 코드가 잘 돌아간다 

 

 

 

 

 

 

Reference : 

https://github.com/datitran/raccoon_dataset/issues/90

 

How to use tf.python_io.TFRecordWriter in Tensorflow 2.0 (generate_tfrecord.py) · Issue #90 · datitran/raccoon_dataset

I get this error: File "generate_tfrecord.py", line 102, in main() File "generate_tfrecord.py", line 89, in main writer = tf.python_io.TFRecordWriter(FLAGS.output_path) AttributeError: module 'tens...

github.com

 

반응형