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
|
@@ -19,6 +19,8 @@ tags:
|
|
| 19 |
|_____/|_| |_| |_|\___/|_|_| |_|\__,_|\___||___/\__|_| \__,_|
|
| 20 |
```
|
| 21 |
|
|
|
|
|
|
|
| 22 |
## Model Card
|
| 23 |
This model was finetuned with roughly 300.000 examples of translations from English to Italian and Italian to English. The model was finetuned in a way to more directly provide a translation without much explanation.
|
| 24 |
|
|
|
|
| 19 |
|_____/|_| |_| |_|\___/|_|_| |_|\__,_|\___||___/\__|_| \__,_|
|
| 20 |
```
|
| 21 |
|
| 22 |
+
> For EN-IT translation, check out the [lightweight Quadrifoglio models](https://huggingface.co/collections/LeonardPuettmann/quadrifoglio-6769eb87036c3cd7f38cc921) as well.
|
| 23 |
+
|
| 24 |
## Model Card
|
| 25 |
This model was finetuned with roughly 300.000 examples of translations from English to Italian and Italian to English. The model was finetuned in a way to more directly provide a translation without much explanation.
|
| 26 |
|