Shortcuts

Class MaxUnpool2dImpl

Inheritance Relationships

Base Type

Class Documentation

class MaxUnpool2dImpl : public torch::nn::MaxUnpoolImpl<2, MaxUnpool2dImpl>

Applies maxunpool over a 2-D input.

See https://pytorch.org/docs/main/nn.html#torch.nn.MaxUnpool2d to learn about the exact behavior of this module.

See the documentation for torch::nn::MaxUnpool2dOptions class to learn what constructor arguments are supported for this module.

Example:

MaxUnpool2d model(MaxUnpool2dOptions(3).stride(2).padding(1));

Public Functions

Tensor forward(const Tensor &input, const Tensor &indices, const c10::optional<std::vector<int64_t>> &output_size = c10::nullopt)

Protected Functions

inline virtual bool _forward_has_default_args() override

The following three functions allow a module with default arguments in its forward method to be used in a Sequential module.

You should NEVER override these functions manually. Instead, you should use the FORWARD_HAS_DEFAULT_ARGS macro.

inline virtual unsigned int _forward_num_required_args() override
inline std::vector<torch::nn::AnyValue> _forward_populate_default_args(std::vector<torch::nn::AnyValue> &&arguments) override

Friends

friend struct torch::nn::AnyModuleHolder

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources