File size: 845 Bytes
2a02b2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
language:
- en
- ja
---
# Pythia 410M fine-tuned on Light Novels
This model was fine-tuned on light and web novels. This model was trained for translation, but can do generation too.
This model is a test of using monolingual data to improve translation as well as improving translation by adding similar sentence pairs to prompts.
## English generation
To generate English text with this model, start your prompt with `<|gen_en|>`.
## Japanese generation
To generate Japanese text with this model, start your prompt with `<|gen_ja|>`.
## Japanese to English translation
To translate, format your prompt as such
```
<|tl_ja|>JAPANESE EXAMPLE SENTENCE 1<|tl_en|>ENGLISH EXAMPLE SENTENCE 1<|tl_end|>
<|tl_ja|>JAPANESE EXAMPLE SENTENCE 2<|tl_en|>ENGLISH EXAMPLE SENTENCE 2<|tl_end|>
<|tl_ja|>JAPANESE SENTENCE TO TRANSLATE<|tl_en|>
```
|