chunwoolee0
commited on
Commit
•
7321a13
1
Parent(s):
00f0d03
Update README.md
Browse files
README.md
CHANGED
@@ -44,11 +44,24 @@ It achieves the following results on the evaluation set:
|
|
44 |
|
45 |
## Model description
|
46 |
|
47 |
-
|
48 |
|
49 |
## Intended uses & limitations
|
50 |
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
## Training and evaluation data
|
54 |
|
|
|
44 |
|
45 |
## Model description
|
46 |
|
47 |
+
This model tries to achieve translation from English to Korean using google's mt5 multilingual model.
|
48 |
|
49 |
## Intended uses & limitations
|
50 |
|
51 |
+
Translation from English to Korean
|
52 |
+
|
53 |
+
## Usage
|
54 |
+
|
55 |
+
You can use this model directly with a pipeline for translation language modeling:
|
56 |
+
|
57 |
+
```python
|
58 |
+
>>> from transformers import pipeline
|
59 |
+
>>> translator = pipeline('translation', model='chunwoolee0/ke_t5_base_bongsoo_en_ko')
|
60 |
+
|
61 |
+
>>> translator("Let us go for a walk after lunch.")
|
62 |
+
[{'translation_text': '오류를 방문하십시오.'}]
|
63 |
+
|
64 |
+
The translation fails completely.
|
65 |
|
66 |
## Training and evaluation data
|
67 |
|