-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What param init defaults should we use #94
Comments
From other posts I read so far, it is claimed that Kaiming He (scale=2., mode="fan_in", distribution="normal") is currently the best practice. However, I have not really seen that being used much in public setups. TF/Keras and other Google code often uses Glorot uniform. And this is also the default for the RETURNN (TensorFlow) |
From some Twitter discussion (via @lucasb-eyer):
I guess Xavier Glorot (scale=1.0, mode="fan_avg", distribution="uniform") is a good default choice for any tensors >= 2 dimensions, and just 0. for tensors <= 1 dimension. |
Should our LSTM overwrite this? |
Some options:
I collected some common options here: https://github.com/rwth-i6/returnn/wiki/Parameter-initialization
The text was updated successfully, but these errors were encountered: