diff options
Diffstat (limited to 'simclr/models.py')
-rw-r--r-- | simclr/models.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/simclr/models.py b/simclr/models.py new file mode 100644 index 0000000..216a993 --- /dev/null +++ b/simclr/models.py @@ -0,0 +1,36 @@ +import torch +from torch import nn, Tensor +from torchvision.models import ResNet +from torchvision.models.resnet import BasicBlock + + +class CIFARSimCLRResNet50(ResNet): + def __init__(self, out_dim): + super(CIFARSimCLRResNet50, self).__init__( + block=BasicBlock, layers=[3, 4, 6, 3], num_classes=out_dim + ) + self.conv1 = nn.Conv2d(3, 64, kernel_size=3, + stride=1, padding=1, bias=False) + + def forward(self, x: Tensor) -> Tensor: + x = self.conv1(x) + x = self.bn1(x) + x = self.relu(x) + + x = self.layer1(x) + x = self.layer2(x) + x = self.layer3(x) + x = self.layer4(x) + + x = self.avgpool(x) + x = torch.flatten(x, 1) + x = self.fc(x) + + return x + + +class ImageNetSimCLRResNet50(ResNet): + def __init__(self, out_dim): + super(ImageNetSimCLRResNet50, self).__init__( + block=BasicBlock, layers=[3, 4, 6, 3], num_classes=out_dim + ) |