Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
|
| 3 |
+
License: MIT
|
| 4 |
+
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
The Three-Million-RP-Dataset contains approximately 3,812,972 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.
|
| 8 |
+
|
| 9 |
+
### How to Use:
|
| 10 |
+
|
| 11 |
+
1. First, install the module `datasets`:
|
| 12 |
+
```bash
|
| 13 |
+
!pip install datasets
|
| 14 |
+
```
|
| 15 |
+
|
| 16 |
+
2. Second, initialize the function you want to use for the dataset. In this example, we will print out the dataset:
|
| 17 |
+
```python
|
| 18 |
+
from datasets import load_dataset
|
| 19 |
+
|
| 20 |
+
dataset = load_dataset("Whitzz/Three-Million-RP-Dataset")
|
| 21 |
+
|
| 22 |
+
print(dataset)
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
**Output:**
|
| 26 |
+
```python
|
| 27 |
+
DatasetDict({
|
| 28 |
+
train: Dataset({
|
| 29 |
+
features: ['Thread id', 'Thread Title', 'Thread content'],
|
| 30 |
+
num_rows: 544710
|
| 31 |
+
})
|
| 32 |
+
})
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
### How is it useful?
|
| 36 |
+
This dataset is especially useful for roleplaying models or LoRAs.
|