File size: 896 Bytes
d12dea8 eafd1a1 d12dea8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ---
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. |