File size: 863 Bytes
adf1b19
 
e666264
 
 
adf1b19
e666264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
---
license: apache-2.0
language:
- en
- ja
---

# Pythia 1B 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|>
```