Datasets:
ghomasHudson
commited on
Commit
•
57f4898
1
Parent(s):
a88bfdd
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# MuLD
|
2 |
+
> MuLD: The Multitask Long Document Benchmark
|
3 |
+
|
4 |
+
MuLD (Multitask Long Document Benchmark) is a set of 6 NLP tasks where the inputs consist of at least 10,000 words. The benchmark covers a wide variety of task types including translation, summarization, question answering, and classification. Additionally there is a range of output lengths from a single word classification label all the way up to an output longer than the input text.
|
5 |
+
|
6 |
+
- **Repository:** https://github.com/ghomasHudson/muld
|
7 |
+
- **Paper:** https://arxiv.org/abs/2202.07362
|
8 |
+
|
9 |
+
### Supported Tasks and Leaderboards
|
10 |
+
|
11 |
+
The 6 MuLD tasks consist of:
|
12 |
+
|
13 |
+
|
14 |
+
### Dataset Structure
|
15 |
+
The data is presented in a text-to-text format where each instance contains a input string, output string and (optionally) json encoded metadata.
|
16 |
+
```
|
17 |
+
{'input: 'Who was wearing the blue shirt? The beginning...', 'output': ['John'], 'metadata': ''}
|
18 |
+
```
|
19 |
+
|
20 |
+
### Data Fields
|
21 |
+
- `input`: a string which has a differing structure per task but is presented in a unified format
|
22 |
+
- `output`: a list of strings where each is a possible answer. Most instances only have a single answer, but some such as narrativeQA and VLSP may have multiple.
|
23 |
+
- `metadata`: Additional metadata which may be helpful for evaluation. In this version, only the OpenSubtitles task contains metadata (for the ContraPro annotations).
|
24 |
+
|
25 |
+
### Data Splits
|
26 |
+
Each tasks contains different splits.
|