Update README.md
Browse files
README.md
CHANGED
@@ -15,8 +15,7 @@ configs:
|
|
15 |
---
|
16 |
|
17 |
# Elliquiy roleplaying forum data
|
18 |
-
|
19 |
-
A collection of 6,640,593 posts and 112,328 mostly high-effort _adult_ roleplaying forum threads from Elliquiy, from April 2005 through April 2023. About 9 GB of uncompressed text data (including formatting tags). The data was processed from the larger [raw Forum RP dataset](https://huggingface.co/datasets/lemonilia/Roleplay-Forums_2023-04) collection I also uploaded.
|
20 |
|
21 |
Basic automated cleaning was performed, but the messages are still (by deliberate choice) in HTML format, with the notable exception of converting linebreaks into `\n`.
|
22 |
|
@@ -24,15 +23,18 @@ In addition to the messages, some metadata was provided for user convenience, as
|
|
24 |
|
25 |
Consider this a **work in progress**. I might update the dataset in the future as I improve the cleaning procedure or the data format.
|
26 |
|
27 |
-
# Limitations and issues
|
28 |
During the scraping procedure (performed on April 2023) some information like text color and links was lost in the process.
|
29 |
|
30 |
Most of the data is adult-themed, and given that usernames inside the posts still exist, it would be best if usernames weren't directly used when training a model with this data.
|
31 |
|
32 |
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 formatting problems.
|
33 |
|
34 |
-
|
35 |
|
|
|
|
|
|
|
36 |
The files need PyArrow installed from `pip` to be loaded with `pandas`. FastParquet will not work properly due to the nested data structure.
|
37 |
|
38 |
```python
|
|
|
15 |
---
|
16 |
|
17 |
# Elliquiy roleplaying forum data
|
18 |
+
A collection of 6,640,593 posts and 112,328 forum threads from Elliquiy (arguably the largest and one of the oldest adult roleplaying forums on the Internet), from April 2005 through April 2023. About 9 GB of uncompressed text data (including formatting tags). The data was processed from the larger [raw Forum RP dataset](https://huggingface.co/datasets/lemonilia/Roleplay-Forums_2023-04) collection I also uploaded.
|
|
|
19 |
|
20 |
Basic automated cleaning was performed, but the messages are still (by deliberate choice) in HTML format, with the notable exception of converting linebreaks into `\n`.
|
21 |
|
|
|
23 |
|
24 |
Consider this a **work in progress**. I might update the dataset in the future as I improve the cleaning procedure or the data format.
|
25 |
|
26 |
+
# Limitations, quirks and issues
|
27 |
During the scraping procedure (performed on April 2023) some information like text color and links was lost in the process.
|
28 |
|
29 |
Most of the data is adult-themed, and given that usernames inside the posts still exist, it would be best if usernames weren't directly used when training a model with this data.
|
30 |
|
31 |
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 formatting problems.
|
32 |
|
33 |
+
Note that messages in older threads (low `thread-id`) were in general shorter and more casually written than those in newer ones. This might be due to a slow shift over time in the userbase and/or self-selection due to access requirements.
|
34 |
|
35 |
+
![Median message length trend](https://files.catbox.moe/da3si9.png)
|
36 |
+
|
37 |
+
# Basic usage
|
38 |
The files need PyArrow installed from `pip` to be loaded with `pandas`. FastParquet will not work properly due to the nested data structure.
|
39 |
|
40 |
```python
|