Translation
Transformers
Safetensors
English
Italian
llama
text-generation
text-generation-inference
Instructions to use puettmann/SmolMaestra-1.7b-Translation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use puettmann/SmolMaestra-1.7b-Translation with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="puettmann/SmolMaestra-1.7b-Translation")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("puettmann/SmolMaestra-1.7b-Translation") model = AutoModelForMultimodalLM.from_pretrained("puettmann/SmolMaestra-1.7b-Translation") - Notebooks
- Google Colab
- Kaggle
Leonard Püttmann commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,7 +9,7 @@ language:
|
|
| 9 |
tags:
|
| 10 |
- translation
|
| 11 |
---
|
| 12 |
-
# SmolMaestra - A tiny
|
| 13 |
```html
|
| 14 |
_____ _ __ __ _
|
| 15 |
/ ____| | | \/ | | |
|
|
|
|
| 9 |
tags:
|
| 10 |
- translation
|
| 11 |
---
|
| 12 |
+
# SmolMaestra - A tiny model tuned for text translation
|
| 13 |
```html
|
| 14 |
_____ _ __ __ _
|
| 15 |
/ ____| | | \/ | | |
|