Struct PixelShuffleImpl¶
Defined in File pixelshuffle.h
Page Contents
Inheritance Relationships¶
Base Type¶
public torch::nn::Cloneable< PixelShuffleImpl >
(Template Class Cloneable)
Struct Documentation¶
-
struct PixelShuffleImpl : public torch::nn::Cloneable<PixelShuffleImpl>¶
Rearranges elements in a tensor of shape :math:
(*, C \times r^2, H, W)
to a tensor of shape :math:(*, C, H \times r, W \times r)
, where r is an upscale factor.See https://pytorch.org/docs/main/nn.html#torch.nn.PixelShuffle to learn about the exact behavior of this module.
See the documentation for
torch::nn::PixelShuffleOptions
class to learn what constructor arguments are supported for this module.Example:
PixelShuffle model(PixelShuffleOptions(5));
Public Functions
-
explicit PixelShuffleImpl(const PixelShuffleOptions &options_)¶
-
virtual void pretty_print(std::ostream &stream) const override¶
Pretty prints the
PixelShuffle
module into the givenstream
.
-
Tensor forward(const Tensor &input)¶
Public Members
-
PixelShuffleOptions options¶
The options with which this
Module
was constructed.
-
explicit PixelShuffleImpl(const PixelShuffleOptions &options_)¶