Instructions to use mt-empty/english-assyrian with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mt-empty/english-assyrian 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="mt-empty/english-assyrian")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("mt-empty/english-assyrian") model = AutoModelForSeq2SeqLM.from_pretrained("mt-empty/english-assyrian") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,9 +1,3 @@
|
|
| 1 |
-
https://github.com/mt-empty/assyrian-translation-model
|
| 2 |
-
|
| 3 |
-
This is an English to Assyrian/Eastern Syriac machine translation model, it uses [English to Arabic](https://huggingface.co/Helsinki-NLP/opus-mt-en-ar) model as the base model.
|
| 4 |
-
|
| 5 |
-
Although the project aim is to Build a English to Assyrian - the ones that fall under [Northeastern Neo-Aramaic](https://en.wikipedia.org/wiki/Northeastern_Neo-Aramaic) - the current model mostly provides translation for Classical Syriac. This model is a good initial step, but I hope future work will make it more inline with Assyrian dialects.
|
| 6 |
-
|
| 7 |
---
|
| 8 |
language:
|
| 9 |
- en
|
|
@@ -14,3 +8,9 @@ license: apache-2.0
|
|
| 14 |
metrics:
|
| 15 |
- sacrebleu
|
| 16 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
|
|
|
| 8 |
metrics:
|
| 9 |
- sacrebleu
|
| 10 |
---
|
| 11 |
+
|
| 12 |
+
https://github.com/mt-empty/assyrian-translation-model
|
| 13 |
+
|
| 14 |
+
This is an English to Assyrian/Eastern Syriac machine translation model, it uses [English to Arabic](https://huggingface.co/Helsinki-NLP/opus-mt-en-ar) model as the base model.
|
| 15 |
+
|
| 16 |
+
Although the project aim is to Build a English to Assyrian - the ones that fall under [Northeastern Neo-Aramaic](https://en.wikipedia.org/wiki/Northeastern_Neo-Aramaic) - the current model mostly provides translation for Classical Syriac. This model is a good initial step, but I hope future work will make it more inline with Assyrian dialects.
|