I want to initialize a 4 * 11 matrix using the smoothing uniform in keras using the following code:
import keras keras.initializers.glorot_uniform((4,11))
and getting output:
<keras.initializers.VarianceScaling at 0x7f9666fc48d0>
how to visualize the output. I try c [1] and get the output of 'VarianceScaling' object does not support indexing
source share