what is the default kernel_initializer in keras

前端 未结 2 1722
情话喂你
情话喂你 2021-02-03 17:01

In the user manual, it shows the different kernel_initializer below

https://keras.io/initializers/

the main purpose is to initialize the weight matrix in the neura

2条回答
  •  北海茫月
    2021-02-03 17:50

    GlorotUniform, keras uses Glorot initialization with a uniform distribution.r = √(3/fan_avg)

    fan_avg = (fan_in + fan_out) /2

    number of inputs = fan_in

    number of nurons in a layer = fan_out

提交回复
热议问题