Instructions to use CadenzaBaron/M2M100-418M-for-GameTranslation-Finetuned-Zh-En with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CadenzaBaron/M2M100-418M-for-GameTranslation-Finetuned-Zh-En 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="CadenzaBaron/M2M100-418M-for-GameTranslation-Finetuned-Zh-En")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("CadenzaBaron/M2M100-418M-for-GameTranslation-Finetuned-Zh-En") model = AutoModelForSeq2SeqLM.from_pretrained("CadenzaBaron/M2M100-418M-for-GameTranslation-Finetuned-Zh-En") - Notebooks
- Google Colab
- Kaggle
Commit ·
148ff33
1
Parent(s): d839e72
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,7 +18,7 @@ This is a finetuned version of Facebook/M2M100.
|
|
| 18 |
It's a project born from the activity of [Amateur Modding Avenue](discord.gg/agFA6xa6un), a Discord based modding community.
|
| 19 |
Special thanks to the Path of Wuxia modding team for kindly sharing their translations to help build the dataset.
|
| 20 |
|
| 21 |
-
It has been trained on a parallel corpus on several Chinese video games translations. All of them are from human/fan translations.
|
| 22 |
|
| 23 |
It's not perfect but it's the best I could do.
|
| 24 |
It should be sitting somewhere between Google Translate and DeepL, I guess.
|
|
|
|
| 18 |
It's a project born from the activity of [Amateur Modding Avenue](discord.gg/agFA6xa6un), a Discord based modding community.
|
| 19 |
Special thanks to the Path of Wuxia modding team for kindly sharing their translations to help build the dataset.
|
| 20 |
|
| 21 |
+
It has been trained on a 46k lines parallel corpus on several Chinese video games translations. All of them are from human/fan translations.
|
| 22 |
|
| 23 |
It's not perfect but it's the best I could do.
|
| 24 |
It should be sitting somewhere between Google Translate and DeepL, I guess.
|