Mimi (Patcharin) Cheng
Results
2
comments of
Mimi (Patcharin) Cheng
Thanks for your prompt response @lucidrains! It's resnet-50 Here is the full script ``` resnet = models.resnet50(pretrained=True) model = BYOL( resnet, image_size = 256, hidden_layer = 'avgpool' ) imgs =...
@lucidrains thanks for you explanation. It works with `imgs = torch.randn(2, 3, 256, 256)`. Just wondering is there a way to retrieve embedding for only one new coming image after...