Datasets:
andreaskoepf
commited on
Commit
•
6ae7592
1
Parent(s):
c5ca5f1
Update README.md
Browse files
README.md
CHANGED
@@ -241,11 +241,6 @@ details about the data structure and Python code to read and write jsonl files c
|
|
241 |
Conversation data is provided either as nested messages in trees (extension `.trees.jsonl.gz`)
|
242 |
or as flat list (table) of messages (extension `.messages.jsonl.gz`).
|
243 |
|
244 |
-
Full conversation trees can be reconstructed from flat messages by using the `parent_id`
|
245 |
-
and `message_id` properties to identify the parent-child relationship of messages. The `message_tree_id`
|
246 |
-
and `tree_state` properties (only present in flat messages files) can be used to find all
|
247 |
-
all messages of a message tree or to select trees by their state.
|
248 |
-
|
249 |
### Ready For Export Trees
|
250 |
|
251 |
```
|
@@ -296,6 +291,10 @@ val = ds['validation'] # len(val)=4401 (5%)
|
|
296 |
|
297 |
The messages appear in depth-first order of the message trees.
|
298 |
|
|
|
|
|
|
|
|
|
299 |
|
300 |
### Languages
|
301 |
|
|
|
241 |
Conversation data is provided either as nested messages in trees (extension `.trees.jsonl.gz`)
|
242 |
or as flat list (table) of messages (extension `.messages.jsonl.gz`).
|
243 |
|
|
|
|
|
|
|
|
|
|
|
244 |
### Ready For Export Trees
|
245 |
|
246 |
```
|
|
|
291 |
|
292 |
The messages appear in depth-first order of the message trees.
|
293 |
|
294 |
+
Full conversation trees can be reconstructed from the flat messages table by using the `parent_id`
|
295 |
+
and `message_id` properties to identify the parent-child relationship of messages. The `message_tree_id`
|
296 |
+
and `tree_state` properties (only present in flat messages files) can be used to find all
|
297 |
+
all messages of a message tree or to select trees by their state.
|
298 |
|
299 |
### Languages
|
300 |
|