Class: Torch::NN::PairwiseDistance
- Defined in:
- lib/torch/nn/pairwise_distance.rb
Instance Attribute Summary
Attributes inherited from Module
Instance Method Summary collapse
- #forward(x1, x2) ⇒ Object
-
#initialize(p: 2.0, eps: 1e-6, keepdim: false) ⇒ PairwiseDistance
constructor
A new instance of PairwiseDistance.
Methods inherited from Module
#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #deep_dup, #double, #eval, #float, #half, #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
#_activation_fn, #_clones, #_ntuple, #_pair, #_quadrupal, #_single, #_triple
Constructor Details
#initialize(p: 2.0, eps: 1e-6, keepdim: false) ⇒ PairwiseDistance
Returns a new instance of PairwiseDistance.
4 5 6 7 8 9 |
# File 'lib/torch/nn/pairwise_distance.rb', line 4 def initialize(p: 2.0, eps: 1e-6, keepdim: false) super() @norm = p @eps = eps @keepdim = keepdim end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Torch::NN::Module
Instance Method Details
#forward(x1, x2) ⇒ Object
11 12 13 |
# File 'lib/torch/nn/pairwise_distance.rb', line 11 def forward(x1, x2) F.pairwise_distance(x1, x2, p: @norm, eps: @eps, keepdim: @keepdim) end |