tf.compat.v1.batch_to_space  |  TensorFlow v2.16.1 (original) (raw)

tf.compat.v1.batch_to_space

Stay organized with collections Save and categorize content based on your preferences.

BatchToSpace for 4-D tensors of type T.

tf.compat.v1.batch_to_space(
    input, crops, block_size, name=None, block_shape=None
)

This is a legacy version of the more general BatchToSpaceND.

Rearranges (permutes) data from batch into blocks of spatial data, followed by cropping. This is the reverse transformation of SpaceToBatch. More specifically, this op outputs a copy of the input tensor where values from the batchdimension are moved in spatial blocks to the height and width dimensions, followed by cropping along the height and width dimensions.

Args
input A Tensor. 4-D tensor with shape[batch*block_size*block_size, height_pad/block_size, width_pad/block_size, depth]. Note that the batch size of the input tensor must be divisible byblock_size * block_size.
crops A Tensor. Must be one of the following types: int32, int64. 2-D tensor of non-negative integers with shape [2, 2]. It specifies how many elements to crop from the intermediate result across the spatial dimensions as follows:crops = [[crop_top, crop_bottom], [crop_left, crop_right]]
block_size An int that is >= 2.
name A name for the operation (optional).
Returns
A Tensor. Has the same type as input.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.

Last updated 2024-04-26 UTC.