andreaskoepf commited on
Commit
a2c461b
1 Parent(s): dee0b5f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -8
README.md CHANGED
@@ -129,19 +129,37 @@ corpus consisting of 161,443 messages distributed across 66,497 conversation tre
129
  35 different languages, annotated with 461,292 quality ratings. The corpus is a product
130
  of a worldwide crowd-sourcing effort involving over 13,500 volunteers.
131
 
132
- The dataset was exported from the open-assistant.io production database on April, 12 2023.
133
-
134
  ### Dataset Structure
135
 
136
- Thes dataset contains demonstrations of of human-assistant conversations that were collected
137
- on the open-assistant.io website.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
 
139
- All conversations are exported as message trees which contain conversation messages nodes. Each message has a
140
- role which can either be "assistant" or "prompter". The root node of a message tree is called the initial prompt.
141
- Nodes with at least two replies of completed trees have a `rank` field which indicates the users' preference consensus.
142
- The lower the rank the better the message.
143
 
144
 
 
 
 
 
145
 
146
 
147
 
 
129
  35 different languages, annotated with 461,292 quality ratings. The corpus is a product
130
  of a worldwide crowd-sourcing effort involving over 13,500 volunteers.
131
 
 
 
132
  ### Dataset Structure
133
 
134
+ This dataset contains demonstrations of human-assistant conversations which were collected
135
+ on the open-assistant.io website until April, 12 2023.
136
+
137
+ Conversations are exported as message trees which contain conversation messages as nodes.
138
+ The root node of a message tree is called the initial prompt. Each message node can have
139
+ multiple replies. Nodes with more than one reply can have a `rank` field indicating the
140
+ order among the siblings sorted by user preference (the most preferred message has rank 0).
141
+ All messages have a role which can either be "assistant" or "prompter". The roles in
142
+ conversation threads from prompt to leaf node in a message tree are stricly alternating
143
+ between "assistant" and "prompter".
144
+
145
+ ## Main Dataset Files
146
+
147
+ Data is provided either as nested as a message tree or as flat list (table) of messages.
148
+ Names of files containing message trees end in `.trees.jsonl.gz` while files containing
149
+ a list of messages with a file name ending in `.messages.jsonl.gz`.
150
+
151
+ Mesages
152
 
153
+ ```
154
+ 2023-04-12_oasst_ready.trees.jsonl.gz 10364 trees with 88838 total messages
155
+ 2023-04-12_oasst_ready.messages.jsonl.gz 88838 messages
156
+ ```
157
 
158
 
159
+ ```
160
+ 2023-04-12_oasst_all.trees.jsonl.gz 66497 trees with 161443 total messages
161
+ 2023-04-12_oasst_all.messages.jsonl.gz 161443 messages
162
+ ```
163
 
164
 
165