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 ·
6167bc7
1
Parent(s): aff6a27
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,6 +20,8 @@ widget:
|
|
| 20 |
- text: "地阶上品遁术,施展后便可立于所持之剑上,以极快的速度自由飞行。"
|
| 21 |
---
|
| 22 |
|
|
|
|
|
|
|
| 23 |
This is a finetuned version of Facebook/M2M100.
|
| 24 |
It's a project born from the activity of [Amateur Modding Avenue](discord.gg/agFA6xa6un), a Discord based modding community.
|
| 25 |
Special thanks to the Path of Wuxia modding team for kindly sharing their translations to help build the dataset.
|
|
|
|
| 20 |
- text: "地阶上品遁术,施展后便可立于所持之剑上,以极快的速度自由飞行。"
|
| 21 |
---
|
| 22 |
|
| 23 |
+
--Model version has been bumped to V2, providing seemingly better translations. Legacy model still available on the 'V1' branch--
|
| 24 |
+
|
| 25 |
This is a finetuned version of Facebook/M2M100.
|
| 26 |
It's a project born from the activity of [Amateur Modding Avenue](discord.gg/agFA6xa6un), a Discord based modding community.
|
| 27 |
Special thanks to the Path of Wuxia modding team for kindly sharing their translations to help build the dataset.
|