I want to intialize a array with random gaussian with standard deviation of 0.08 in python. I was able to find something like this
self.biases = [np.random.randn(y, 1) for y in sizes[1:]]
However it for standard deviation of 1.
I want to intialize a array with random gaussian with standard deviation of 0.08 in python. I was able to find something like this
self.biases = [np.random.randn(y, 1) for y in sizes[1:]]
However it for standard deviation of 1.
Copyright © 2021 Jogjafile Inc.
From