544K-RP-Datasets / README.md
Whitzz's picture
Update README.md
eafd1a1 verified
---
License: MIT
---
The 544K-RP-Datasets contains approximately 544710 lines of data, all extracted from Bluemoon roleplaying threads and cleaned using a v2-8 TPU. However, after cleaning, it now contains 544,710 usable training data points.
### How to Use:
1. First, install the module `datasets`:
```bash
!pip install datasets
```
2. Second, initialize the function you want to use for the dataset. In this example, we will print out the dataset:
```python
from datasets import load_dataset
dataset = load_dataset("Whitzz/Three-Million-RP-Dataset")
print(dataset)
```
**Output:**
```python
DatasetDict({
train: Dataset({
features: ['Thread id', 'Thread Title', 'Thread content'],
num_rows: 544710
})
})
```
### How is it useful?
This dataset is especially useful for roleplaying models or LoRAs.