Update README.md
Browse files
README.md
CHANGED
@@ -16,7 +16,7 @@ configs:
|
|
16 |
|
17 |
# Elliquiy roleplaying forum data
|
18 |
|
19 |
-
A collection of 6,640,593 posts and 112,328 thousands of mostly _erotic_ roleplaying forum threads from Elliquiy, from
|
20 |
|
21 |
Basic automated cleaning was performed, but the messages are still (by deliberate choice) mostly in HTML format, with the notable exception of converting linebreaks into `\n`.
|
22 |
|
@@ -29,6 +29,27 @@ During the scraping procedure (occurred on April 2023) some information like tex
|
|
29 |
|
30 |
Given the text formatting used by many users, complete and thorough conversion to Markdown seems very difficult without losing information in the process or causing other issues.
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
# Cleaning procedure details
|
33 |
## At the element level
|
34 |
- Converted post dates to ISO format
|
|
|
16 |
|
17 |
# Elliquiy roleplaying forum data
|
18 |
|
19 |
+
A collection of 6,640,593 posts and 112,328 thousands of mostly _erotic_ roleplaying forum threads from Elliquiy, from about mid-2005 through early April 2023. About 9 GB of uncompressed text data (including formatting tags). The data is from the larger [raw Forum RP dataset](https://huggingface.co/datasets/lemonilia/Roleplay-Forums_2023-04) I also uploaded.
|
20 |
|
21 |
Basic automated cleaning was performed, but the messages are still (by deliberate choice) mostly in HTML format, with the notable exception of converting linebreaks into `\n`.
|
22 |
|
|
|
29 |
|
30 |
Given the text formatting used by many users, complete and thorough conversion to Markdown seems very difficult without losing information in the process or causing other issues.
|
31 |
|
32 |
+
# Dataset field explanation
|
33 |
+
## Threads
|
34 |
+
| Field | Explanation
|
35 |
+
|-----|-----
|
36 |
+
| thread-id | The forum software's given thread id
|
37 |
+
| thread-title | User-given thread title
|
38 |
+
| category-id | The id of the subforum where the thread was posted
|
39 |
+
| category-name | The full name of the subforum. "Small Groups" subforums are dedicated to roleplays for more than two participants, and "Solo" are generally for two participants but more than two may appear here as well.
|
40 |
+
| participant-count | The number of users writing in the thread
|
41 |
+
| message-count | The total number of messages in the thread
|
42 |
+
| word-count-total | The cumulative sum of space-separated words in the thread, calculated by python's `split()` function, including HTML tags
|
43 |
+
| word-count-median | The median message length in words, calculated by python's `split()` function, including HTML tags
|
44 |
+
|
45 |
+
## Messages
|
46 |
+
| Field | Explanation
|
47 |
+
|-----|-----
|
48 |
+
| index | Message number, starting from zero at the beginning of the thread. Added mainly for debugging purposes
|
49 |
+
| from | The name of the user who wrote the message. **Avoid using** if possible
|
50 |
+
| from-alternative | Alternative, locally-unique name for the user in the form of `User0` ... `UserN`
|
51 |
+
| timestamp | ISO UTC message timestamp
|
52 |
+
|
53 |
# Cleaning procedure details
|
54 |
## At the element level
|
55 |
- Converted post dates to ISO format
|