An open API service indexing awesome lists of open source software.

https://github.com/sauravmaheshkar/mlx-ssl

self-supervised learning on apple silicon
https://github.com/sauravmaheshkar/mlx-ssl

data2vec mlx self-supervised-learning

Last synced: 4 months ago
JSON representation

self-supervised learning on apple silicon

Awesome Lists containing this project

README

          

## MLX SSL

Python package for self-supervised learning on Apple Silicon using MLX

### Model Implementations

1. [SimCLR](https://arxiv.org/abs/2002.05709)

```python
from mlx_ssl.models import SimCLR

# Available Models:
# * mlx-community/simclrv1-imagenet1k-resnet50-1x
# * mlx-community/simclrv1-imagenet1k-resnet50-2x
# * mlx-community/simclrv1-imagenet1k-resnet50-4x

model = SimCLR.from_pretrained(
"mlx-community/simclrv1-imagenet1k-resnet50-1x"
)
```

2. [Data2Vec](https://arxiv.org/abs/2202.03555)

```python
from mlx_ssl.models import Data2VecVisionForImageClassification

model = Data2VecVisionForImageClassification.from_pretrained(
"mlx-community/data2vec-vision-large-ft1k"
)
```