File size: 1,044 Bytes
0a78a42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bf6df83
 
 
 
 
 
 
 
 
 
 
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
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.