File size: 1,658 Bytes
b8547bd
 
e324007
 
 
 
 
 
 
 
 
70c8a3f
 
b8547bd
e324007
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
627904d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
59
---
license: apache-2.0
language:
- en
task_categories:
- summarization
- text2text-generation
tags:
- summarization
- long-document
pretty_name: SQuALITY v1.3
size_categories:
- n<1K
---


# SQuALITY - v1.3

> Original paper [here](https://arxiv.org/abs/2205.11465)

This is v1.3, the 'text' edition `.jsonl` files. See description from the [original repo](https://github.com/nyu-mll/SQuALITY):

> v1.3 fixes some bugs in v1.2. In v1.2, 10 out of 127 articles (each ~5k-word-long) are missing a few hundreds words each, so summaries may not be fully contained in the article. To fix this issue, we have updated the 10 articles.

## contents 

> again, this is taken from the repo

Each data file ({train/dev/test}.jsonl) is formatted as a JSON lines file. Each row in the data file is a JSON dictionary with the following fields:

- metadata: the Gutenberg story ID, an internal UID, and the Project Gutenberg license
- document: the Gutenberg story
questions: a list of questions and accompanying responses
  - question text
  - question number: the order in which that question was answered by the writers
  - responses: list of worker's response, where each response is a dictionary containing the (anonymized) worker ID, an internal UID, and their response to the question
 

### dataset contents


```python
DatasetDict({
    train: Dataset({
        features: ['metadata', 'document', 'questions'],
        num_rows: 50
    })
    test: Dataset({
        features: ['metadata', 'document', 'questions'],
        num_rows: 52
    })
    validation: Dataset({
        features: ['metadata', 'document', 'questions'],
        num_rows: 25
    })
})
```