What is the default kernel initializer in tf.layers.conv2d and tf.layers.dense?

前端 未结 4 637
不知归路
不知归路 2020-12-04 11:51

The official Tensorflow API doc claims that the parameter kernel_initializer defaults to None for tf.layers.conv2d and tf.layers

4条回答
  •  广开言路
    2020-12-04 12:43

    In CNN, kernels values are initialized randomly. Then the values will be readjusted during backpropagation to yield better edge detection(!) kernels. See this

提交回复
热议问题