Thanks for sharing this repo, great work!
I trained BYOL on my data and noticed that the weights and biases for BN layers are not updated on the saved model. I used resnet18 without pretrained weights resnet = models.resnet50(pretrained=False). After training for multiple epochs, the saved model has bn1.weight all equal to 1.0 and bn1.bias all equal to 0.0 .
Is this the expected behavior or am I missing something? Appreciate your response!
Thanks for sharing this repo, great work!
I trained BYOL on my data and noticed that the weights and biases for BN layers are not updated on the saved model. I used resnet18 without pretrained weights
resnet = models.resnet50(pretrained=False). After training for multiple epochs, the saved model hasbn1.weightall equal to 1.0 andbn1.biasall equal to 0.0 .Is this the expected behavior or am I missing something? Appreciate your response!