You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your excellent work and code. Here is a question about Line 314 in meta_neural_network_architectures.py. Why is self.weight always used even if params is not None?
The text was updated successfully, but these errors were encountered:
Good catch. That block is legacy code prior to my mechanism for explicit selection of what parameters should be optimized in the inner loop. It should really be identical to how MetaBatchNorm works.
Hi Antreas,
Thanks for your excellent work and code. Here is a question about Line 314 in meta_neural_network_architectures.py. Why is
self.weight
always used even ifparams is not None
?The text was updated successfully, but these errors were encountered: