pytorch-maml icon indicating copy to clipboard operation
pytorch-maml copied to clipboard

Batch norm in maml example

Open iamsimha opened this issue 4 years ago • 1 comments

Hi

can you please help me understand why 'track_running_stats' is set to False ?

https://github.com/tristandeleu/pytorch-maml/blob/c7d994a3e9900d3d6790dbe921cd63abbc6589d4/maml/model.py#L12

iamsimha avatar Apr 16 '20 11:04 iamsimha

In the original MAML paper, they dont track the running mean and variance. They only use the current mean and variance for their normalization. Although in MAML++ they do track running mean and vairance

sudarshan1994 avatar Jul 15 '20 21:07 sudarshan1994