Datasets:
Add dataset
Browse files- README.md +42 -1
- data.parquet +3 -0
README.md
CHANGED
@@ -1,3 +1,44 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
configs:
|
3 |
+
- config_name: default
|
4 |
+
data_files:
|
5 |
+
- split: train
|
6 |
+
path: data.parquet
|
7 |
+
task_categories:
|
8 |
+
- text-generation
|
9 |
+
- conversational
|
10 |
+
- roleplaying
|
11 |
+
pretty_name: Deep Dungeons and Dragons
|
12 |
+
dataset_info:
|
13 |
+
features:
|
14 |
+
- name: thread_id
|
15 |
+
dtype: int
|
16 |
+
- name: message_id
|
17 |
+
dtype: int
|
18 |
+
- name: author_id
|
19 |
+
dtype: int
|
20 |
+
- name: author_num_posts
|
21 |
+
dtype: int
|
22 |
+
- name: message
|
23 |
+
dtype: str
|
24 |
+
- name: character
|
25 |
+
dtype: str
|
26 |
---
|
27 |
+
|
28 |
+
# Deep Dungeons and Dragons
|
29 |
+
|
30 |
+
A dataset of long-form multi-turn and multi-character collaborative RPG stories, complete with associated character cards.
|
31 |
+
|
32 |
+
This dataset comprises of 56,000 turns in 1544 stories following 9771 characters: a total of **50M Llama tokens**.
|
33 |
+
Each turn comprises a multi-paragraph continuation of a story from the perspective of a defined character including both dialogue and prose.
|
34 |
+
|
35 |
+
This dataset is a cleaned and reformatted version of [Deep Dungeons and Dragons](https://groups.inf.ed.ac.uk/cup/ddd/), originally released in 2018 by Annie Louis and Charles Sutton and comprising of transcripts collected from public games at [roleplayerguild.com](https://roleplayerguild.com). We've removed images and links (as well as their references) from posts to make this a text-only dataset, as well as anonymising usernames - although this is still available in the original dataset.
|
36 |
+
|
37 |
+
### Schema
|
38 |
+
|
39 |
+
- **thread_id:** The numeric ID of a specific RPG game.
|
40 |
+
- **message_id:** The turn within a thread.
|
41 |
+
- **author_id:** ID corresponding to the message author.
|
42 |
+
- **author_num_posts:** The total number of posts by that author - may be usable as a quality signal.
|
43 |
+
- **message:** The post containing a continuation of the RPG story roleplaying as a specific character. Most of the time, this is a multi-paragraph description containing both prose and dialogue.
|
44 |
+
- **character:** The character card that this post is role-playing as. This is 1-to-1 mapped to (thread_id, author_id).
|
data.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6cdfbf42303a0ea885fc64f4aba548c21e5544a63ec6523f8543efed75a5c71e
|
3 |
+
size 218641633
|