Defined in generated file: python/ops/gen_io_ops.py
Writes contents to the file at input filename. Creates file and recursively
Aliases:
tf.io.write_file(
filename,
contents,
name=None
)
creates directory if not existing.
Args:
filename
: ATensor
of typestring
. scalar. The name of the file to which we write the contents.contents
: ATensor
of typestring
. scalar. The content to be written to the output file.name
: A name for the operation (optional).
Returns:
The created Operation.