Skip to content

Commit

Permalink
Unify description of Korean Chatbot (#27, #59)
Browse files Browse the repository at this point in the history
  • Loading branch information
lovit committed Sep 8, 2020
1 parent f89e7a0 commit 0dbd3e0
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions Korpora/korpora_chatbot_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@
}
]

description = """ Author : songys@github
Repository : https://github.com/songys/Chatbot_data
References :
- Ham, J., Choe, Y. J., Park, K., Choi, I., & Soh, H. (2020). KorNLI and KorSTS: New Benchmark
Datasets for Korean Natural Language Understanding. arXiv preprint arXiv:2004.03289.
(https://arxiv.org/abs/2004.03289)
Chatbot_data_for_Korean v1.0
1. 챗봇 트레이닝용 문답 페어 11,876개
2. 일상다반사 0, 이별(부정) 1, 사랑(긍정) 2로 레이블링
자세한 내용은 위의 repository를 참고하세요."""

license = """ CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Details in https://creativecommons.org/publicdomain/zero/1.0/"""


class KoreanChatbotData(LabeledSentencePairKorpusData):
"""
Expand Down Expand Up @@ -46,16 +61,6 @@ class KoreanChatbotKorpus(Korpus):
}
"""
def __init__(self, root_dir=None, force_download=False):
description = """ Chatbot_data_for_Korean v1.0
1. 챗봇 트레이닝용 문답 페어 11,876개
2. 일상다반사 0, 이별(부정) 1, 사랑(긍정) 2로 레이블링
자세한 내용은 아래 repository를 참고하세요.
https://github.com/songys/Chatbot_data"""

license = """ CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Details in https://creativecommons.org/publicdomain/zero/1.0/"""

super().__init__(description, license)

if root_dir is None:
Expand Down

0 comments on commit 0dbd3e0

Please sign in to comment.