Open shantanutrip opened 3 months ago
This is a duplicate. Please fix https://github.com/tensorflow/io/issues/1912 The issue is closed but the problem is not resolved
Hi team, any updates on this issue?
Please provide resolution for the common problem underlying both the issues - this and/or https://github.com/tensorflow/io/issues/1912.
Thanks!
Hi,
When trying to use s3 filesystem with
tensorflow-io==0.37.1
andtensorflow==2.16.2
, I get the following error:This exits with error code 134.
This was discussed in another issue: https://github.com/tensorflow/io/issues/1912 for TF2.14 which was closed earlier. However, since the issue still persists, I am reopening it for resolution.
Steps to Reproduce:
docker pull tensorflow/tensorflow:2.16.2-gpu
(Image details from tf dockerhub)pip install tensorflow-io==0.37.1
example_path = "example.tfrecords" np.random.seed(0)
with tf.io.TFRecordWriter(example_path) as filewriter: for in range(4): x, y = np.random.random(), np.random.random()
import tensorflow as tf import tensorflow_io as tfio s3_filename="" #Fill this with the s3 uri of the uploaded file. Should look like s3://object-name/example.tfrecords ds = tf.data.TFRecordDataset(s3_filename) for element in ds: print(f"{element.shape}")
File system scheme 's3' not implemented