pszemraj commited on
Commit
39ef027
1 Parent(s): 9ad3d13

:memo: add citations to README

Browse files
Files changed (1) hide show
  1. README.md +29 -1
README.md CHANGED
@@ -19,4 +19,32 @@ The dataset was tokenized and fed to the model as a conversation between two spe
19
  ## examples
20
 
21
  - the default inference API examples should work _okay_
22
- - an ideal test would be explicitly adding `person beta` to the **end** of the prompt text. The model is forced to respond to the entered chat prompt instead of adding to the entered prompt and then responding to that (which may cut off the response text due to the Inference API limits).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  ## examples
20
 
21
  - the default inference API examples should work _okay_
22
+ - an ideal test would be explicitly adding `person beta` to the **end** of the prompt text. The model is forced to respond to the entered chat prompt instead of adding to the entered prompt and then responding to that (which may cut off the response text due to the Inference API limits).
23
+
24
+ ## citations
25
+ ```
26
+ @inproceedings{dinan2019wizard,
27
+ author={Emily Dinan and Stephen Roller and Kurt Shuster and Angela Fan and Michael Auli and Jason Weston},
28
+ title={{W}izard of {W}ikipedia: Knowledge-powered Conversational Agents},
29
+ booktitle = {Proceedings of the International Conference on Learning Representations (ICLR)},
30
+ year={2019},
31
+ }
32
+
33
+ @inproceedings{li-etal-2017-dailydialog,
34
+ title = "{D}aily{D}ialog: A Manually Labelled Multi-turn Dialogue Dataset",
35
+ author = "Li, Yanran and
36
+ Su, Hui and
37
+ Shen, Xiaoyu and
38
+ Li, Wenjie and
39
+ Cao, Ziqiang and
40
+ Niu, Shuzi",
41
+ booktitle = "Proceedings of the Eighth International Joint Conference on Natural Language Processing (Volume 1: Long Papers)",
42
+ month = nov,
43
+ year = "2017",
44
+ address = "Taipei, Taiwan",
45
+ publisher = "Asian Federation of Natural Language Processing",
46
+ url = "https://aclanthology.org/I17-1099",
47
+ pages = "986--995",
48
+ abstract = "We develop a high-quality multi-turn dialog dataset, \textbf{DailyDialog}, which is intriguing in several aspects. The language is human-written and less noisy. The dialogues in the dataset reflect our daily communication way and cover various topics about our daily life. We also manually label the developed dataset with communication intention and emotion information. Then, we evaluate existing approaches on DailyDialog dataset and hope it benefit the research field of dialog systems. The dataset is available on \url{http://yanran.li/dailydialog}",
49
+ }
50
+ ```