class Sabina::Layer::AEHiddenLayer

Public Class Methods

new(size) click to toggle source
Calls superclass method
# File lib/sabina/layer/ae_hidden_layer.rb, line 4
def initialize(size)
  super
  @f = ->(x){ x }
  @f_ = ->(_){ 1.0 }
end