Interface | Description |
---|---|
BiastInitializer |
This interface specifies the method of initializing the bias connections in a
neural network.
|
WeightInitializer |
This interface specifies the method of initializing the weight connections in
a neural network.
|
Class | Description |
---|---|
ConstantInit |
This initializes all bias values to a single constant value
|
GaussianNormalInit |
This object initializes the values of weights by sampling from the zero mean
Gaussian
|
TanhInitializer |
This initializer samples the weights from an adjusted uniform distribution
in order to provided better behavior of neuron activation and gradients
See: Glorot, X., & Bengio, Y. |
Copyright © 2017. All rights reserved.