Class: Torch::NN::Softmax2d
Instance Method Summary collapse
Methods inherited from Module
#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #double, #eval, #float, #half, #initialize, #inspect, #load_state_dict, #method_missing, #modules, #named_buffers, #named_children, #named_modules, #named_parameters, #parameters, #register_buffer, #register_parameter, #requires_grad!, #respond_to?, #share_memory, #state_dict, #to, #train, #type, #zero_grad
Methods included from Utils
#_ntuple, #_pair, #_quadrupal, #_single, #_triple
Constructor Details
This class inherits a constructor from Torch::NN::Module
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Torch::NN::Module
Instance Method Details
#forward(input) ⇒ Object
4 5 6 7 |
# File 'lib/torch/nn/softmax2d.rb', line 4 def forward(input) raise ArgumentError, "Softmax2d requires a 4D tensor as input" unless input.dim == 4 F.softmax(input, dim: 1) end |