tf.io.decode_compressed

Decompress strings.

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.

Args:

Returns:

A Tensor of type string.