Class: DNN::Layers::GRU

Inherits:
RNN show all
Defined in:
lib/dnn/core/layers/rnn_layers.rb

Instance Attribute Summary

Attributes inherited from RNN

#hidden, #num_units, #recurrent_weight, #recurrent_weight_initializer, #recurrent_weight_regularizer, #return_sequences, #stateful

Attributes inherited from Connection

#bias, #bias_initializer, #bias_regularizer, #weight, #weight_initializer, #weight_regularizer

Attributes inherited from TrainableLayer

#trainable

Attributes inherited from Layer

#input_shape, #output_shape

Instance Method Summary collapse

Methods inherited from RNN

#backward_node, #compute_output_shape, #forward_node, #get_params, #load_hash, #regularizers, #reset_state, #to_hash

Methods included from LayerNode

#backward_node, #forward, #forward_node

Methods inherited from Connection

#get_params, #regularizers, #to_hash, #use_bias

Methods inherited from TrainableLayer

#clean, #get_params

Methods inherited from Layer

#<<, #built?, #call, call, #clean, #compute_output_shape, #forward, from_hash, #load_hash, #to_hash

Constructor Details

#initialize(num_units, stateful: false, return_sequences: true, weight_initializer: Initializers::RandomNormal.new, recurrent_weight_initializer: Initializers::RandomNormal.new, bias_initializer: Initializers::Zeros.new, weight_regularizer: nil, recurrent_weight_regularizer: nil, bias_regularizer: nil, use_bias: true) ⇒ GRU

Returns a new instance of GRU.



437
438
439
440
441
442
443
444
445
446
447
448
# File 'lib/dnn/core/layers/rnn_layers.rb', line 437

def initialize(num_units,
               stateful: false,
               return_sequences: true,
               weight_initializer: Initializers::RandomNormal.new,
               recurrent_weight_initializer: Initializers::RandomNormal.new,
               bias_initializer: Initializers::Zeros.new,
               weight_regularizer: nil,
               recurrent_weight_regularizer: nil,
               bias_regularizer: nil,
               use_bias: true)
  super
end

Instance Method Details

#build(input_shape) ⇒ Object



450
451
452
453
454
455
456
457
# File 'lib/dnn/core/layers/rnn_layers.rb', line 450

def build(input_shape)
  super
  num_prev_units = input_shape[1]
  @weight.data = Xumo::SFloat.new(num_prev_units, @num_units * 3)
  @recurrent_weight.data = Xumo::SFloat.new(@num_units, @num_units * 3)
  @bias.data = Xumo::SFloat.new(@num_units * 3) if @bias
  init_weight_and_bias
end

#create_hidden_layerObject



459
460
461
# File 'lib/dnn/core/layers/rnn_layers.rb', line 459

def create_hidden_layer
  @hidden_layers = Array.new(@time_length) { GRUDense.new(@weight, @recurrent_weight, @bias) }
end