Instructions to use M-CLIP/Swedish-2M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use M-CLIP/Swedish-2M with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="M-CLIP/Swedish-2M", device_map="auto")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("M-CLIP/Swedish-2M") model = AutoModel.from_pretrained("M-CLIP/Swedish-2M", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
a8d1b82
1
Parent(s): bc7435b
Update README.md (#1)
Browse files- Update README.md (994a5c8cf0d55584df6db0c4d171ff77cd2f0098)
Co-authored-by: Loïck BOURDOIS <lbourdois@users.noreply.huggingface.co>