What does tf.gfile do in TensorFlow?

前端 未结 2 1215
攒了一身酷
攒了一身酷 2020-12-23 12:32

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

2条回答
  •  一向
    一向 (楼主)
    2020-12-23 13:13

    As you correctly point out tf.gfile is an abstraction for accessing the filesystem and is documented here. It is recommended over using plain python API since it provides some level of portability.

提交回复
热议问题