pszemraj commited on
Commit
cc6e4a8
1 Parent(s): a01a31e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ai-msgbot GPT2-XL-dialogue
2
+
3
+ _NOTE: model card is WIP_
4
+
5
+ GPT2-XL (~1.5 B parameters) trained on [the Wizard of Wikipedia dataset](https://parl.ai/projects/wizard_of_wikipedia/) for 40k steps with **33**/36 layers frozen using `aitextgen`. The resulting model was then **further fine-tuned** on the [Daily Dialogues](http://yanran.li/dailydialog) for 40k steps, with **34**/36 layers frozen.
6
+
7
+
8
+ Designed for use with [ai-msgbot](https://github.com/pszemraj/ai-msgbot) to create an open-ended chatbot (of course, if other use cases arise, have at it).
9
+
10
+
11
+ ## conversation data
12
+
13
+ The dataset was tokenized and fed to the model as a conversation between two speakers, whose names are below. This is relevant for writing prompts and filtering/extracting text from responses.
14
+
15
+ `script_speaker_name` = `person alpha`
16
+
17
+ `script_responder_name` = `person beta`
18
+
19
+ ## examples
20
+
21
+ - the default inference API examples should work _okay_
22
+ - an ideal test would be explicitly adding `person beta` into the prompt text the model is forced to respond to instead of adding onto the entered prompt.
23
+
24
+
25
+ ## citations
26
+
27
+ @inproceedings{dinan2019wizard,
28
+ author={Emily Dinan and Stephen Roller and Kurt Shuster and Angela Fan and Michael Auli and Jason Weston},
29
+ title={{W}izard of {W}ikipedia: Knowledge-powered Conversational Agents},
30
+ booktitle = {Proceedings of the International Conference on Learning Representations (ICLR)},
31
+ year={2019},
32
+ }
33
+
34
+ @inproceedings{li-etal-2017-dailydialog,
35
+ title = "{D}aily{D}ialog: A Manually Labelled Multi-turn Dialogue Dataset",
36
+ author = "Li, Yanran and
37
+ Su, Hui and
38
+ Shen, Xiaoyu and
39
+ Li, Wenjie and
40
+ Cao, Ziqiang and
41
+ Niu, Shuzi",
42
+ booktitle = "Proceedings of the Eighth International Joint Conference on Natural Language Processing (Volume 1: Long Papers)",
43
+ month = nov,
44
+ year = "2017",
45
+ address = "Taipei, Taiwan",
46
+ publisher = "Asian Federation of Natural Language Processing",
47
+ url = "https://aclanthology.org/I17-1099",
48
+ pages = "986--995",
49
+ 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}",
50
+ }