agentlans commited on
Commit
4d798c1
·
verified ·
1 Parent(s): 83bf8c4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +137 -0
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pretty_name: Topical-Chat ShareGPT
5
+ dataset_info:
6
+ features:
7
+ - name: conversations
8
+ dtype:
9
+ - from: string
10
+ - value: string
11
+ - name: file
12
+ dtype: string
13
+ size_categories:
14
+ - 10K<n<100K
15
+ task_categories:
16
+ - text-generation
17
+ - text2text-generation
18
+ tags:
19
+ - conversation
20
+ - dialogue
21
+ - chat
22
+ - trivia
23
+ ---
24
+
25
+ # Topical-Chat ShareGPT
26
+
27
+ This dataset is a modified version of the [Conversational-Reasoning/Topical-Chat](https://huggingface.co/datasets/Conversational-Reasoning/Topical-Chat) dataset, formatted in a ShareGPT-like structure for chatbot training. It comprises conversations between two individuals discussing news or Wikipedia articles, adapted for AI and user interaction. Please refer to the original dataset for comprehensive study details.
28
+
29
+ ## Dataset Description
30
+
31
+ ### Modifications
32
+
33
+ Key changes from the original dataset include:
34
+
35
+ * **AI and User Interaction:** The conversations are restructured to simulate interactions between an AI and a user, instead of human agent_1 and agent_2.
36
+ * **System Prompt:** A randomly selected system prompt is added at the beginning of each conversation, instructing the AI on how to converse with the user.
37
+ * **Emotions in Messages:** The emotions annotated in the original dataset are now incorporated directly into the message content for role-playing purposes.
38
+
39
+ ### Dataset Statistics
40
+
41
+ The dataset consists of the following number of entries:
42
+
43
+ * **Train:** 8&thinsp;628
44
+ * **Validation:** 1&thinsp;078
45
+ * **Test:** 1&thinsp;078
46
+ * **Total:** 10&thinsp;784
47
+
48
+ ### Data Format
49
+
50
+ Each entry in the dataset is a JSON object with the following structure:
51
+
52
+ ```json
53
+ {
54
+ "conversations": [
55
+ {
56
+ "from": "system",
57
+ "value": "You're chatting about fun facts and current affairs with the user. Feel free to add your perspective in any way you'd like."
58
+ },
59
+ {
60
+ "from": "human",
61
+ "value": "hi how are you? do you like rap music?"
62
+ },
63
+ {
64
+ "from": "gpt",
65
+ "value": "I like some stuff. Mainly some of the older stuff. I do enjoy Jay-Z"
66
+ },
67
+ {
68
+ "from": "human",
69
+ "value": "*hands at sides* I dont really know his stuff. he is quite popular ive heard."
70
+ },
71
+ {
72
+ "from": "gpt",
73
+ "value": "I know he is in the Songwriter's Hall of Fame, I am not too familiar with his entire body of work, but what I have heard, I like."
74
+ },
75
+ {
76
+ "from": "human",
77
+ "value": "I guess he has rivals in the rap world? Is kanye one of them?"
78
+ },
79
+ {
80
+ "from": "gpt",
81
+ "value": "I think so, but I also think they worked on an album together. I dont personally care for Kanye."
82
+ },
83
+ ...
84
+ {
85
+ "from": "gpt",
86
+ "value": "*hands at sides* Same to you! Have a great day!"
87
+ },
88
+ {
89
+ "from": "human",
90
+ "value": "Thanks, you too! Bye"
91
+ },
92
+ {
93
+ "from": "gpt",
94
+ "value": "Bye!"
95
+ }
96
+ ],
97
+ "file": "valid_rare.jsonl"
98
+ }
99
+ ```
100
+
101
+ * `conversations`: A list of dictionaries, where each dictionary represents a turn in the conversation.
102
+ * `from`: Indicates the speaker ("system", "human", or "gpt").
103
+ * `value`: The content of the message.
104
+ * `file`: The name of the original JSONL file from which the conversation was extracted.
105
+
106
+ ### Intended Use
107
+
108
+ This dataset is intended for training and evaluating chatbot models, particularly those designed for engaging in topical and knowledge-grounded conversations.
109
+
110
+ ### Limitations
111
+
112
+ The dataset has the following limitations:
113
+
114
+ * **Outdated/Inaccurate Trivia:** Some of the trivia or factual information may be outdated or inaccurate.
115
+ * **Non-Literal Interpretation:** The conversations may contain hyperbole or other figures of speech that should not be taken literally.
116
+ * **Non-Sequiturs:** Sudden topic changes may occur, resulting in non-sequiturs.
117
+ * **Incomplete Conversations:** Some conversations may be incomplete to maintain an even number of turns.
118
+
119
+ ## Citation
120
+
121
+ If you use this dataset in your work, please cite the original Topical-Chat dataset:
122
+
123
+ ```
124
+ @inproceedings{gopalakrishnan2019topical,
125
+ author={Karthik Gopalakrishnan and Behnam Hedayatnia and Qinlang Chen and Anna Gottardi and Sanjeev Kwatra and Anu Venkatesh and Raefer Gabriel and Dilek Hakkani-Tür},
126
+ title={{Topical-Chat: Towards Knowledge-Grounded Open-Domain Conversations}},
127
+ year=2019,
128
+ booktitle={Proc. Interspeech 2019},
129
+ pages={1891--1895},
130
+ doi={10.21437/Interspeech.2019-3079},
131
+ url={http://dx.doi.org/10.21437/Interspeech.2019-3079}
132
+ }
133
+ ```
134
+
135
+ ```
136
+ Gopalakrishnan, Karthik, et al. "Topical-Chat: Towards Knowledge-Grounded Open-Domain Conversations.", Proc. INTERSPEECH 2019
137
+ ```