0

The default beta_initializer for layers.batch_normalization is: tf.zeros_initializer().

Is it possible to create a new initializer with an arbitrary value?

Maxim
  • 52,561
  • 27
  • 155
  • 209
Avi Pelz
  • 23
  • 5

1 Answers1

1

See the list of built-in initializers. The one that interests you is tf.constant_initializer:

Initializer that generates tensors with constant values.

Maxim
  • 52,561
  • 27
  • 155
  • 209