
Channel_shuffle
torch_channel_shuffle(self, groups)
(Tensor) the input tensor
(int) number of groups to divide channels in and rearrange.
math:(*, C , H, W)
:
Divide the channels in a tensor of shape
if (torch_is_installed()) {
input <- torch_randn(c(1, 4, 2, 2))
print(input)
output <- torch_channel_shuffle(input, 2)
print(output)
}
Run the code above in your browser using DataLab