File size: 2,126 Bytes
b422407
 
 
 
 
 
 
 
 
30ddc17
c111dcc
30ddc17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac945c3
30ddc17
 
 
 
 
 
 
 
 
 
c111dcc
 
30ddc17
c111dcc
 
30ddc17
 
 
 
 
 
 
 
 
 
 
 
 
 
c111dcc
 
 
30ddc17
 
 
 
 
 
 
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
60
61
62
63
64
65
66
67
68
69
70
---
license: mit
task_categories:
- question-answering
- sentence-similarity
language:
- en
size_categories:
- 100K<n<1M
---
# Dataset Card for "lfqa_preprocessed"

## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
  - [Dataset Summary](#dataset-summary)
- [Dataset Structure](#dataset-structure)
  - [Data Instances](#data-instances)
  - [Data Fields](#data-fields)
  - [Data Splits](#data-splits)
- [Additional Information](#additional-information)
  - [Licensing Information](#licensing-information)

## Dataset Description

- **Homepage:** [https://towardsdatascience.com/long-form-qa-beyond-eli5-an-updated-dataset-and-approach-319cb841aabb](https://towardsdatascience.com/long-form-qa-beyond-eli5-an-updated-dataset-and-approach-319cb841aabb)


### Dataset Summary

This is a simplified version of [vblagoje's](https://huggingface.co/vblagoje) *[lfqa_support_docs](https://huggingface.co/datasets/vblagoje/lfqa_support_docs)* and *[lfqa](https://huggingface.co/datasets/vblagoje/lfqa)* datasets.
It was generated by me to have a more straight forward way to train Seq2Seq models on context based long form question answering tasks.

## Dataset Structure

### Data Instances

An example of 'train' looks as follows.

```json
{
    "question": "what's the difference between a forest and a wood?",
    "answer": "They're used interchangeably a lot. You'll get different answers from different resources, but the ...",
    "context": [
        "Wood is divided, according to its botanical origin, into two kinds: softwoods, ...",
        "Processing and products differs especially with regard to the distinction between softwood and hardwood ..."
    ]
}
```

### Data Fields

The data fields are the same among all splits.

- `question`: a `string` feature.
- `answer`: a `string` feature.
- `context`: a list feature containing `string` features.

### Data Splits

|   name   |train|validation|
|----------|----:|---------:|
|          |226147|     3020|


## Additional Information

### Licensing Information

This dataset is distributed under the MIT licence.