A native iRODS filesystem for TensorFlow
- https://docs.w3cub.com/tensorflow~guide/extend/add_filesys/
- https://www.tensorflow.org/install/source
- https://github.com/korydraughn/irods_api_examples#irods-filesystem
- https://docs.w3cub.com/tensorflow~guide/extend/adding_an_op/#build_the_op_library
- A python environment with
tensorflow
installed
$ ./build.sh
import tensorflow as tf
tf.load_library('irods_file_system.so')
with tf.io.gfile.GFile("irods://path/to/file.txt", mode='w') as f:
f.write("hi")