kimsan0622 commited on
Commit
cd56053
1 Parent(s): 106751e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language: ko
4
+ tags:
5
+ - t5
6
+ eos_token: "</s>"
7
+ widget:
8
+ - text: 아버지가 방에 들어가신다.</s>
9
+ ---
10
+
11
+ # ke-t5 base
12
+
13
+ Pretrained T5 Model on Korean and English. See [Github](https://github.com/AIRC-KETI/ke-t5) and [Paper](https://aclanthology.org/2021.findings-emnlp.33/) [Korean paper](https://koreascience.kr/article/CFKO202130060717834.pdf) for more details.
14
+
15
+ ## How to use
16
+
17
+ ```python
18
+ from transformers import AutoModel, AutoTokenizer
19
+
20
+ model = AutoModel.from_pretrained("KETI-AIR/ke-t5-small-ko")
21
+ tokenizer = AutoTokenizer.from_pretrained("KETI-AIR/ke-t5-small-ko")
22
+ ```
23
+
24
+ ## BibTeX entry and citation info
25
+
26
+ ```bibtex
27
+ @inproceedings{kim-etal-2021-model-cross,
28
+ title = "A Model of Cross-Lingual Knowledge-Grounded Response Generation for Open-Domain Dialogue Systems",
29
+ author = "Kim, San and
30
+ Jang, Jin Yea and
31
+ Jung, Minyoung and
32
+ Shin, Saim",
33
+ booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2021",
34
+ month = nov,
35
+ year = "2021",
36
+ address = "Punta Cana, Dominican Republic",
37
+ publisher = "Association for Computational Linguistics",
38
+ url = "https://aclanthology.org/2021.findings-emnlp.33",
39
+ doi = "10.18653/v1/2021.findings-emnlp.33",
40
+ pages = "352--365",
41
+ abstract = "Research on open-domain dialogue systems that allow free topics is challenging in the field of natural language processing (NLP). The performance of the dialogue system has been improved recently by the method utilizing dialogue-related knowledge; however, non-English dialogue systems suffer from reproducing the performance of English dialogue systems because securing knowledge in the same language with the dialogue system is relatively difficult. Through experiments with a Korean dialogue system, this paper proves that the performance of a non-English dialogue system can be improved by utilizing English knowledge, highlighting the system uses cross-lingual knowledge. For the experiments, we 1) constructed a Korean version of the Wizard of Wikipedia dataset, 2) built Korean-English T5 (KE-T5), a language model pre-trained with Korean and English corpus, and 3) developed a knowledge-grounded Korean dialogue model based on KE-T5. We observed the performance improvement in the open-domain Korean dialogue model even only English knowledge was given. The experimental results showed that the knowledge inherent in cross-lingual language models can be helpful for generating responses in open dialogue systems.",
42
+ }
43
+ ```