epeters3 commited on
Commit
9f0dbc0
1 Parent(s): a84cf66

Add Add citation

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -28,7 +28,6 @@ these fields:
28
  | `history` | list of string | The conversation's utterances so far, alternating between speakers with one utterance per speaker. |
29
  | `candidates` | list of string | A list of utterances including distractor utterances as well as the true utterance the speaker gave, given their personality and the conversation history thus far. The true utterance is always the last utterance in this list. |
30
 
31
-
32
  ## Dataset Curation
33
 
34
  The dataset was sourced from HuggingFace's version of the dataset used in the code for their
@@ -39,3 +38,16 @@ used to conduct part-of-speech tagging to identify proper nouns, which were then
39
  capitalized. The pipeline was also used to conduct sentence segmentation, allowing
40
  the beginning of sentences to then be capitalized. Finally, all instances of the
41
  pronoun "I" were capitalized, along with its contractions.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  | `history` | list of string | The conversation's utterances so far, alternating between speakers with one utterance per speaker. |
29
  | `candidates` | list of string | A list of utterances including distractor utterances as well as the true utterance the speaker gave, given their personality and the conversation history thus far. The true utterance is always the last utterance in this list. |
30
 
 
31
  ## Dataset Curation
32
 
33
  The dataset was sourced from HuggingFace's version of the dataset used in the code for their
 
38
  capitalized. The pipeline was also used to conduct sentence segmentation, allowing
39
  the beginning of sentences to then be capitalized. Finally, all instances of the
40
  pronoun "I" were capitalized, along with its contractions.
41
+
42
+ ## Citation Information
43
+
44
+ For the PersonaChat dataset, please cite:
45
+
46
+ ```
47
+ @article{zhang2018personalizing,
48
+ title={Personalizing dialogue agents: I have a dog, do you have pets too?},
49
+ author={Zhang, Saizheng and Dinan, Emily and Urbanek, Jack and Szlam, Arthur and Kiela, Douwe and Weston, Jason},
50
+ journal={arXiv preprint arXiv:1801.07243},
51
+ year={2018}
52
+ }
53
+ ```