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")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("M-CLIP/Swedish-2M") model = AutoModel.from_pretrained("M-CLIP/Swedish-2M") - Notebooks
- Google Colab
- Kaggle