Class: DNN::Layers::Connection
- Inherits:
-
HasParamLayer
- Object
- Layer
- HasParamLayer
- DNN::Layers::Connection
- Defined in:
- lib/dnn/core/layers.rb
Overview
It is a superclass of all connection layers.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#bias ⇒ Object
readonly
Returns the value of attribute bias.
-
#bias_initializer ⇒ Object
readonly
Returns the value of attribute bias_initializer.
-
#bias_regularizer ⇒ Object
readonly
Returns the value of attribute bias_regularizer.
-
#weight ⇒ Object
readonly
Returns the value of attribute weight.
-
#weight_initializer ⇒ Object
readonly
Returns the value of attribute weight_initializer.
-
#weight_regularizer ⇒ Object
readonly
Returns the value of attribute weight_regularizer.
Attributes inherited from HasParamLayer
Attributes inherited from Layer
Instance Method Summary collapse
- #get_params ⇒ Object
-
#initialize(weight_initializer: Initializers::RandomNormal.new, bias_initializer: Initializers::Zeros.new, weight_regularizer: nil, bias_regularizer: nil, use_bias: true) ⇒ Connection
constructor
A new instance of Connection.
- #regularizers ⇒ Object
- #to_hash(merge_hash) ⇒ Object
-
#use_bias ⇒ Boolean
Return whether to use bias.
Methods inherited from Layer
#backward, #build, #built?, #call, call, #forward, from_hash, #load_hash, #output_shape
Constructor Details
#initialize(weight_initializer: Initializers::RandomNormal.new, bias_initializer: Initializers::Zeros.new, weight_regularizer: nil, bias_regularizer: nil, use_bias: true) ⇒ Connection
Returns a new instance of Connection.
179 180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/dnn/core/layers.rb', line 179 def initialize(weight_initializer: Initializers::RandomNormal.new, bias_initializer: Initializers::Zeros.new, weight_regularizer: nil, bias_regularizer: nil, use_bias: true) super() @weight_initializer = weight_initializer @bias_initializer = bias_initializer @weight_regularizer = weight_regularizer @bias_regularizer = bias_regularizer @weight = Param.new(nil, Xumo::SFloat[0]) @bias = use_bias ? Param.new(nil, Xumo::SFloat[0]) : nil end |
Instance Attribute Details
#bias ⇒ Object (readonly)
Returns the value of attribute bias.
168 169 170 |
# File 'lib/dnn/core/layers.rb', line 168 def bias @bias end |
#bias_initializer ⇒ Object (readonly)
Returns the value of attribute bias_initializer.
170 171 172 |
# File 'lib/dnn/core/layers.rb', line 170 def bias_initializer @bias_initializer end |
#bias_regularizer ⇒ Object (readonly)
Returns the value of attribute bias_regularizer.
172 173 174 |
# File 'lib/dnn/core/layers.rb', line 172 def bias_regularizer @bias_regularizer end |
#weight ⇒ Object (readonly)
Returns the value of attribute weight.
167 168 169 |
# File 'lib/dnn/core/layers.rb', line 167 def weight @weight end |
#weight_initializer ⇒ Object (readonly)
Returns the value of attribute weight_initializer.
169 170 171 |
# File 'lib/dnn/core/layers.rb', line 169 def weight_initializer @weight_initializer end |
#weight_regularizer ⇒ Object (readonly)
Returns the value of attribute weight_regularizer.
171 172 173 |
# File 'lib/dnn/core/layers.rb', line 171 def weight_regularizer @weight_regularizer end |
Instance Method Details
#get_params ⇒ Object
213 214 215 |
# File 'lib/dnn/core/layers.rb', line 213 def get_params { weight: @weight, bias: @bias } end |
#regularizers ⇒ Object
193 194 195 196 197 198 |
# File 'lib/dnn/core/layers.rb', line 193 def regularizers regularizers = [] regularizers << @weight_regularizer if @weight_regularizer regularizers << @bias_regularizer if @bias_regularizer regularizers end |
#to_hash(merge_hash) ⇒ Object
205 206 207 208 209 210 211 |
# File 'lib/dnn/core/layers.rb', line 205 def to_hash(merge_hash) super({ weight_initializer: @weight_initializer.to_hash, bias_initializer: @bias_initializer.to_hash, weight_regularizer: @weight_regularizer&.to_hash, bias_regularizer: @bias_regularizer&.to_hash, use_bias: use_bias }.merge(merge_hash)) end |
#use_bias ⇒ Boolean
Return whether to use bias.
201 202 203 |
# File 'lib/dnn/core/layers.rb', line 201 def use_bias @bias ? true : false end |