I just read about the Keras weight initializers in here. In the documentation, only different initializers has been introduced. Such as:
model.add(Dense(64, kernel_initializer='random_normal'))
I want to know what is the default weight when I don't specify the kernel_initializer
argument.
Is there a way to access it?