Instructions to use AiLab-IMCS-UL/lv-mbert-mini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AiLab-IMCS-UL/lv-mbert-mini with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="AiLab-IMCS-UL/lv-mbert-mini")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("AiLab-IMCS-UL/lv-mbert-mini") model = AutoModelForMaskedLM.from_pretrained("AiLab-IMCS-UL/lv-mbert-mini") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -33,6 +33,7 @@ https://github.com/LUMII-AILab/latvian-encoders
|
|
| 33 |
|
| 34 |
## See also
|
| 35 |
|
|
|
|
| 36 |
- https://huggingface.co/AiLab-IMCS-UL/lv-roberta-base
|
| 37 |
- https://huggingface.co/AiLab-IMCS-UL/lv-deberta-base
|
| 38 |
|
|
|
|
| 33 |
|
| 34 |
## See also
|
| 35 |
|
| 36 |
+
- https://huggingface.co/AiLab-IMCS-UL/lv-mbert-base
|
| 37 |
- https://huggingface.co/AiLab-IMCS-UL/lv-roberta-base
|
| 38 |
- https://huggingface.co/AiLab-IMCS-UL/lv-deberta-base
|
| 39 |
|