chunwoolee0 commited on
Commit
514ac9c
Β·
1 Parent(s): dae15a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -2
README.md CHANGED
@@ -37,9 +37,14 @@ You can use this model directly with a pipeline for translation language modelin
37
  >>> from transformers import pipeline
38
  >>> translator = pipeline('translation', model='chunwoolee0/ke_t5_base_bongsoo_en_ko')
39
 
40
- >>> translator("Let us go for a walk after lunch.")
41
- [{'translation_text': '점심을 마치고 산책을 ν•˜λŸ¬ κ°€μž.'}]
42
 
 
 
 
 
 
43
 
44
  ## Training and evaluation data
45
 
 
37
  >>> from transformers import pipeline
38
  >>> translator = pipeline('translation', model='chunwoolee0/ke_t5_base_bongsoo_en_ko')
39
 
40
+ >>> translator("λ‚˜λŠ” μŠ΅κ΄€μ μœΌλ‘œ 점심식사 후에 산책을 ν•œλ‹€.")
41
+ [{'translation_text': 'I habitually go to walk after lunch'}]
42
 
43
+ >>> translator("이 κ°•μ’ŒλŠ” ν—ˆκΉ…νŽ˜μ΄μŠ€κ°€ λ§Œλ“  κ±°μ•Ό.")
44
+ [{'translation_text': 'This class was created by Huggface.'}]
45
+
46
+ >>> translator("μ˜€λŠ˜μ€ 늦게 일어났닀.")
47
+ [{'translation_text': 'This day, I went late.'}]
48
 
49
  ## Training and evaluation data
50