Class: Torch::NN::BatchNorm2d
- Defined in:
- lib/torch/nn/batch_norm2d.rb
Instance Method Summary collapse
Methods inherited from BatchNorm
#extra_inspect, #forward, #initialize, #reset_parameters, #reset_running_stats
Methods inherited from Module
#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #double, #eval, #float, #forward, #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::BatchNorm
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Torch::NN::Module
Instance Method Details
#_check_input_dim(input) ⇒ Object
4 5 6 7 8 |
# File 'lib/torch/nn/batch_norm2d.rb', line 4 def _check_input_dim(input) if input.dim != 4 raise ArgumentError, "expected 4D input (got #{input.dim}D input)" end end |