| --- |
| configs: |
| - config_name: default |
| data_files: |
| - split: curated |
| path: data/curated-* |
| - split: moderate |
| path: data/moderate-* |
| - split: complete |
| path: data/complete-* |
| dataset_info: |
| features: |
| - name: id |
| dtype: string |
| - name: premise |
| dtype: string |
| - name: novel |
| dtype: string |
| - name: script |
| dtype: string |
| - name: theme |
| dtype: string |
| - name: background |
| dtype: string |
| - name: persona |
| dtype: string |
| - name: event |
| dtype: string |
| - name: ending |
| dtype: string |
| - name: twist |
| dtype: string |
| splits: |
| - name: curated |
| num_bytes: 3490837 |
| num_examples: 100 |
| - name: moderate |
| num_bytes: 34915837 |
| num_examples: 1000 |
| - name: complete |
| num_bytes: 11151183 |
| num_examples: 7599 |
| download_size: 20805551 |
| dataset_size: 49557857 |
| --- |
| |
| ## Load the data |
| ```python |
| from datasets import load_dataset |
| |
| dataset=load_dataset("ManTle/mops") |
| |
| print(dataset) |
| ``` |
|
|
| More details about this dataset can be found at [github](https://github.com/GAIR-NLP/MoPS) repository. |
|
|
|
|