I've seen people using several functions from tf.gfile
such as tf.gfile.GFile
or tf.gfile.Exists
. I have the idea that tf.gfile
deals with files. However, I haven't been able to find the official documentation to see what else it offers.
It'd be great if you could help me with it.
gfile module are: To provide an API that is close to Python's file I/O objects, and. To provide an implementation based on TensorFlow's C++ FileSystem API.
GFile is a high level abstraction for manipulating files on a virtual file system. GFiles are lightweight, immutable objects that do no I/O upon creation. It is necessary to understand that GFile objects do not represent files, merely an identifier for a file.
For anyone landing here, the following answer was provided (by a googler) on: Why use tensorflow gfile? (for file I/O)
The main roles of the tf.gfile module are:
To provide an API that is close to Python's file objects, and
To provide an implementation based on TensorFlow's C++ FileSystem API.
The C++ FileSystem API supports multiple file system implementations, including local files, Google Cloud Storage (using a
gs://
prefix), and HDFS (using anhdfs://
prefix). TensorFlow exports these astf.gfile
, so that you can use these implementations for saving and loading checkpoints, writing TensorBoard logs, and accessing training data (among other uses). However, if all of your files are local, you can use the regular Python file API without any problem.
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