Views
No views yet
1from mlx_ssl.models import SimCLR
2
3
4# Available Models:
5# * mlx-community/simclrv1-imagenet1k-resnet50-1x
6# * mlx-community/simclrv1-imagenet1k-resnet50-2x
7# * mlx-community/simclrv1-imagenet1k-resnet50-4x
8
9model = SimCLR.from_pretrained(
10 "mlx-community/simclrv1-imagenet1k-resnet50-1x"
11)1@article{chen2020simple,
2 title={A Simple Framework for Contrastive Learning of Visual Representations},
3 author={Chen, Ting and Kornblith, Simon and Norouzi, Mohammad and Hinton, Geoffrey},
4 journal={arXiv preprint arXiv:2002.05709},
5 year={2020}
6}