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 | |
|---|---|
| bytes | A Tensorof typestring. A Tensor of string which is compressed. | 
| compression_type | An optional string. Defaults to"". A scalar containing either (i) the empty string (no compression), (ii) "ZLIB", or (iii) "GZIP". | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A Tensorof typestring. | 
    © 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
    https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/io/decode_compressed