-
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
Parameter random init outside name ctx does not work #109
Comments
We also need to think about
It doesn't make sense if we copy the same param init (the actual values), but only the init scheme. We should be careful what
As usual, we should check: How does PyTorch handle this? The param init, and where is the param init actually done, and what does |
About our own param init, also see: #59 About |
We could maybe change the logic of the |
This happens e.g. for
outside a
NameCtx
.Or maybe we want to disallow this? I.e. simply require that the model (all params) are always defined inside a
NameCtx
.Or lazily assign the parent name ctx and the name itself later, similar as we do for
Parameter
?PR in #108.
The text was updated successfully, but these errors were encountered: