diff --git a/docs/source/self_supervised_models.rst b/docs/source/self_supervised_models.rst index 715380ef8c..e14f347e6d 100644 --- a/docs/source/self_supervised_models.rst +++ b/docs/source/self_supervised_models.rst @@ -324,7 +324,7 @@ CIFAR-10 pretrained model:: from pl_bolts.models.self_supervised import SimCLR - weight_path = 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/simclr/bolts_simclr_imagenet/simclr_imagenet.ckpt' + weight_path = 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/simclr/simclr-cifar10-sgd/simclr-cifar10-sgd.ckpt' simclr = SimCLR.load_from_checkpoint(weight_path, strict=False) simclr.freeze()