tensorflow.python.platform 下的常用工具类和工具函数:tensorflow/tensorflow/python/platform at master · tensorflow/tensorflow · GitHub
1. gfile
- tensorflow.python.platform.gfile 常用 api:Suggested API’s for “tensorflow.python.platform.gfile.”
- 随着 tensorflow 版本升级,gfile 已进一步提升至 tf.gfile 下;
那么什么情况下使用 tf.gfile 呢,其主要作用有以下两点:
Why use tensorflow gfile? (for file I/O)
- 提供类似 Python 的
file
对象的 api; - 提供基于 tensorflow 下的 C++ FileSystem API 的实现;
- tf.gfile 是对文件系统的抽象;
- local files,
- Google Cloud Storage (using a gs:// prefix),
- and HDFS (using an hdfs:// prefix)
- tf.gfile 是对文件系统的抽象;