snuspl / dolphin

14 stars 2 forks source link

Use a random generator that is globally shared in the neural network #160

Open beomyeol opened 8 years ago

beomyeol commented 8 years ago

In dolphin-dnn, a fully connected layer can have its random generator and its random seed value for initializing its layer parameters. However, it is not needed for all fully connected layers to have their own random generators and their seed. Instead, a neural network can have a random generator and this generator can be used by all layers (initializers) including fully connected layers and other layers that will be introduced later such as convolutional layers.