--- license: cc-by-4.0 language: - en configs: - config_name: default data_files: - split: train path: '*.parquet' size_categories: - 100K\n`, without any further processing, obtaining one row of data per thread. The records were then saved into Parquet files (`compression='zstd', compression_level=7, row_group_size=20`). I had to make sure to configure the row group size to a small value to avoid issues when loading the the files with pandas or in the HuggingFace dataset viewer (which supports a maximum row group size of 286 MB). As some of the RP threads are huge (more than 10 megabytes of size), I ultimately settled on 20, corresponding to about 200 MB in the worst case scenario. ## Usage notes and warnings The data is not directly usable for finetuning as-is. You will need to split the threads into messages, extract metadata, clean/convert the HTML, etc. For the NSFW forums it will be probably best to somehow avoid using usernames directly, just to be nice(r). For some of the files 32GB of RAM might be needed to load the entire data in memory. ### OOC The dataset includes both in-character (IC) and out-of-character (OOC) threads. However, these are often not directly distinguishable except by tags in their titles. I strongly recommend filtering out OOC threads: OOC discussions often reference IC events without providing necessary background information, which can disrupt model coherence. ## Forum listing Only the roleplay sections were scraped. Note that the SFW forums can have censored slurs, for example using asterisks like `****`. | Name | Type | Scraping period | Notes |------|------|-------|------ | AllTheFallen | NSFW (Lolisho) | 2024-10 | | [Blue Moon Roleplaying Forums](https://bluemoonroleplaying.com/community/) | NSFW | 2023-03 | | [Elliquiy](https://elliquiy.com/forums/index.php) | NSFW | 2023-03 to 2023-04 | "Print" version, lacks some formatting | [Giant in the Playground](https://forums.giantitp.com/forumdisplay.php?3-Play-by-Post-Games) | SFW | 2025-01 | Lolicit | NSFW (Lolisho) | 2023-03 | Defunct website | [Menewsha](https://www.menewsha.com/forum/forumdisplay.php?f=309) | SFW | 2025-01 | No activity at the time of scraping. Generally low-quality postings. | [RPGnet Forums](https://forum.rpg.net/index.php?forums/roleplay-by-post-play-forum.31/) | SFW | 2025-01 | Both IC and OOC threads included. IC threads can be very long (up to 5000 messages) | [RPNation](https://www.rpnation.com/) | SFW | 2025-01 | **1)** Starting March 2017 optional cosmetic BB code for forum messages was introduced, which could make cleanly extracting roleplay/story text very difficult. **2)** OOC/lore/character section not scraped. ## Future plans I might add more SFW forums in the future. For NSFW, what I included probably already covers most bases. Every forum needs its own cleaning process, so adding a large number of small forums, unless needed, isn't very time-efficient.