读取文件的内容。
用法
tf.io.read_file(
filename, name=None
)
参数
-
filename
String 。要读取的文件名。 -
name
String 。操作的可选名称。
返回
- dtype "string" 的张量,带有文件内容。
此操作返回一个张量,其中包含输入文件名的全部内容。它不做任何解析,它只是按原样返回内容。通常,这是输入管道的第一步。
例子:
with open("/tmp/file.txt", "w") as f:
f.write("asdf")
4
tf.io.read_file("/tmp/file.txt")
<tf.Tensor:shape=(), dtype=string, numpy=b'asdf'>
在函数中使用 op 读取图像、对其进行解码并重塑包含像素数据的张量的示例:
@tf.function
def load_image(filename):
raw = tf.io.read_file(filename)
image = tf.image.decode_png(raw, channels=3)
# the `print` executes during tracing.
print("Initial shape:", image.shape)
image.set_shape([28, 28, 3])
print("Final shape:", image.shape)
return image
相关用法
- Python tf.io.gfile.GFile.close用法及代码示例
- Python tf.io.gfile.join用法及代码示例
- Python tf.io.parse_example用法及代码示例
- Python tf.io.gfile.exists用法及代码示例
- Python tf.io.serialize_tensor用法及代码示例
- Python tf.io.gfile.GFile用法及代码示例
- Python tf.io.SparseFeature用法及代码示例
- Python tf.io.gfile.copy用法及代码示例
- Python tf.io.gfile.glob用法及代码示例
- Python tf.io.decode_json_example用法及代码示例
- Python tf.io.TFRecordWriter用法及代码示例
- Python tf.io.decode_gif用法及代码示例
- Python tf.io.decode_raw用法及代码示例
- Python tf.io.RaggedFeature用法及代码示例
- Python tf.io.deserialize_many_sparse用法及代码示例
- Python tf.io.write_graph用法及代码示例
- Python tf.io.TFRecordOptions.get_compression_type_string用法及代码示例
- Python tf.io.decode_proto用法及代码示例
- Python tf.image.random_brightness用法及代码示例
- Python tf.image.pad_to_bounding_box用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.io.read_file。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。