I'm having trouble working with tensorflow. I want to use TFRecordWriter()
as below:
with tf.python_io.TFRecordWriter(testing_filename) as tfrecord_writer:
# do sth
but I get the error:
AttributeError: module 'tensorflow' has no attribute 'python_io'
I'm working with tensorflow 1.2 and python 3.
How can I fix the problem?
Thanks.
The problem in the (python_io) :
with tf.python_io.TFRecordWriter(testing_filename) as tfrecord_writer:
# do sth
changed it to:
with tf.io.TFRecordWriter(testing_filename) as tfrecord_writer:
# do sth
Use this instead :
tf.python.python_io
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With