├── .gitignore ├── LICENSE ├── README.md ├── convert.py ├── download.py ├── resnet.py └── verify.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Separius/SimCLRv2-Pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Separius/SimCLRv2-Pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Separius/SimCLRv2-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Separius/SimCLRv2-Pytorch/HEAD/convert.py -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Separius/SimCLRv2-Pytorch/HEAD/download.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Separius/SimCLRv2-Pytorch/HEAD/resnet.py -------------------------------------------------------------------------------- /verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Separius/SimCLRv2-Pytorch/HEAD/verify.py --------------------------------------------------------------------------------