Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,36 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-4.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-4.0
|
3 |
+
configs:
|
4 |
+
- config_name: default
|
5 |
+
data_files:
|
6 |
+
- split: train
|
7 |
+
path: '*.parquet'
|
8 |
+
size_categories:
|
9 |
+
- 10K<n<100K
|
10 |
+
---
|
11 |
+
|
12 |
+
A semi-cleaned, processed version of the [raw files uploaded elsewhere](https://huggingface.co/datasets/lemonilia/roleplaying-forums-raw). Contrarily to the processed [Elliquiy dataset](https://huggingface.co/datasets/lemonilia/Elliquiy-Role-Playing-Forums_2023-04) also posted, I've made an effort to preserve as much as possible of the original HTML while simplifying and converting it to HTML5 where possible and cleaning it, with again the exception of converting linebreaks into newlines.
|
13 |
+
|
14 |
+
I'm almost directly using these files for private finetuning tests, but in most cases they will probably need additional cleaning/processing.
|
15 |
+
|
16 |
+
For user convenience, some metadata on the posts was also provided.
|
17 |
+
|
18 |
+
## Contents
|
19 |
+
The entirety of the _In-character_, _Structured Games_ and _Free Form Roleplaying_ subforums from GitP, for a total of about **26k threads and 6.4 million messages**. The latter two subforums are in the "Message Board Games" parquet file.
|
20 |
+
|
21 |
+
## Usage notes
|
22 |
+
The thread messages-usernames-timestamps are encapsulated into ShareGPT-like JSON strings; one row per complete thread. They need to be converted into your preferred structure for further processing into a usable dataset for training.
|
23 |
+
|
24 |
+
## Processing done
|
25 |
+
- Converted all `<br/>` (and their variants) to `\n`
|
26 |
+
- Changed non-breakable spaces into regular spaces
|
27 |
+
- Changed `<font>` tags to `<span style="...">`
|
28 |
+
- Converted font sizes to the standard HTML absolute size keywords
|
29 |
+
- Changed blockquotes into a cleaner format
|
30 |
+
- Changed spoiler `<div>` into `<details><summary>` blocks
|
31 |
+
- Replaced the main smilies with their emoji equivalent
|
32 |
+
- Removed most redundant attributes from HTML tags
|
33 |
+
- Removed unnecessary cosmetic styling from non-font tags
|
34 |
+
- Removed diceroll warnings
|
35 |
+
- Removed/normalized excessive spaces around many tags
|
36 |
+
- Other minor cleanup
|