Template Class ConstantPadImpl#
Defined in File padding.h
Page Contents
Inheritance Relationships#
Base Type#
public torch::nn::Cloneable< Derived >(Template Class Cloneable)
Class Documentation#
- 
template<size_t D, typename Derived>
class ConstantPadImpl : public torch::nn::Cloneable<Derived># Base class for all (dimension-specialized) ConstantPad modules.
Public Functions
- 
inline ConstantPadImpl(ExpandingArray<D * 2> padding, double value)#
 
- 
explicit ConstantPadImpl(const ConstantPadOptions<D> &options_)#
 
- 
virtual void reset() override#
 reset()must perform initialization of all members with reference semantics, most importantly parameters, buffers and submodules.
- 
Tensor forward(const Tensor &input)#
 
- 
virtual void pretty_print(std::ostream &stream) const override#
 Pretty prints the
ConstantPad{1,2}dmodule into the givenstream.
Public Members
- 
ConstantPadOptions<D> options#
 The options with which this
Modulewas constructed.
- 
inline ConstantPadImpl(ExpandingArray<D * 2> padding, double value)#