Class: Torch::NN::RNN
Instance Attribute Summary
Attributes inherited from Module
Instance Method Summary collapse
-
#initialize(*args, **options) ⇒ RNN
constructor
A new instance of RNN.
Methods inherited from RNNBase
#_apply, #extra_inspect, #flatten_parameters, #forward, #permute_hidden, #reset_parameters
Methods inherited from Module
#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #deep_dup, #double, #eval, #float, #forward, #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(*args, **options) ⇒ RNN
Returns a new instance of RNN.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/torch/nn/rnn.rb', line 4 def initialize(*args, **) if .key?(:nonlinearity) if [:nonlinearity] == "tanh" mode = "RNN_TANH" elsif [:nonlinearity] == "relu" mode = "RNN_RELU" else raise ArgumentError, "Unknown nonlinearity: #{[:nonlinearity]}" end .delete(:nonlinearity) else mode = "RNN_TANH" end super(mode, *args, **) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Torch::NN::Module