Update README.md
Browse files
README.md
CHANGED
@@ -61,6 +61,34 @@ The dataset is partitioned into train/val/test sets. Each set is uploaded as a j
|
|
61 |
- `text` (list[str]): a list of segmented propositions
|
62 |
- `labels` (list[str]): a list of labels corresponding to the propositions
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
## Dataset Creation
|
66 |
|
|
|
61 |
- `text` (list[str]): a list of segmented propositions
|
62 |
- `labels` (list[str]): a list of labels corresponding to the propositions
|
63 |
|
64 |
+
An example looks as follows.
|
65 |
+
```
|
66 |
+
{
|
67 |
+
"doc_id": "H1WORsdlG",
|
68 |
+
"text": [
|
69 |
+
"This paper addresses the important problem of understanding mathematically how GANs work.",
|
70 |
+
"The approach taken here is to look at GAN through the lense of the scattering transform.",
|
71 |
+
"Unfortunately the manuscrit submitted is very poorly written.",
|
72 |
+
"Introduction and flow of thoughts is really hard to follow.",
|
73 |
+
"In method sections, the text jumps from one concept to the next without proper definitions.",
|
74 |
+
"Sorry I stopped reading on page 3.",
|
75 |
+
"I suggest to rewrite this work before sending it to review.",
|
76 |
+
"Among many things: - For citations use citep and not citet to have () at the right places.",
|
77 |
+
"- Why does it seems -> Why does it seem etc.",
|
78 |
+
],
|
79 |
+
"labels": [
|
80 |
+
'fact',
|
81 |
+
'fact',
|
82 |
+
'evaluation',
|
83 |
+
'evaluation',
|
84 |
+
'evaluation',
|
85 |
+
'evaluation',
|
86 |
+
'request',
|
87 |
+
'request',
|
88 |
+
'request',
|
89 |
+
]
|
90 |
+
}
|
91 |
+
```
|
92 |
|
93 |
## Dataset Creation
|
94 |
|