This operation returns a tensor with the entire contents of the input
filename. It does not do any parsing, it just returns the contents as
they are. Usually, this is the first step in the input pipeline.
Example of using the op in a function to read an image, decode it and reshape
the tensor containing the pixel data:
@tf.functiondefload_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)returnimage
Args
filename
string. filename to read from.
name
string. Optional name for the op.
Returns
A tensor of dtype "string", with the file contents.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-01-23 UTC."],[],[]]