Decompress strings.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.compat.v1.decode_compressed
, tf.compat.v1.io.decode_compressed
tf.io.decode_compressed(
bytes, compression_type='', name=None
)
This op decompresses each element of the bytes
input Tensor
, which
is assumed to be compressed using the given compression_type
.
The output
is a string Tensor
of the same shape as bytes
,
each element containing the decompressed data from the corresponding
element in bytes
.
Returns | |
---|---|
A Tensor of type string .
|