File size: 1,292 Bytes
8346ce5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35ab1ef
 
 
 
 
 
 
 
8346ce5
35ab1ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: query
    dtype: string
  - name: passage
    dtype: string
  splits:
  - name: train
    num_bytes: 934643435
    num_examples: 3012496
  download_size: 627593528
  dataset_size: 934643435
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
language:
- da
task_categories:
- feature-extraction
- question-answering
size_categories:
- 1M<n<10M
license: apache-2.0
---

# GooAQ (Google Answers to Google Questions) question-answer pairs in Danish

## About

This dataset is a version of the [GooAQ question-answer pairs dataset](https://huggingface.co/datasets/sentence-transformers/embedding-training-data) machine-translated from English to Danish ([link to original dataset](https://github.com/allenai/gooaq)).

Machine translation is performed using the Helsinki NLP [English-to-Danish OPUS-MT model](https://huggingface.co/Helsinki-NLP/opus-mt-en-da).

The dataset contains ~3M question-answer pairs and can be used to train embedding and question-answer models. Each pair consists of one question ('query') and one passage containing the answer ('passage').

## Usage

Using the HuggingFace datasets library:

```python
from datasets import load_dataset

dataset = load_dataset("KennethTM/gooaq_pairs_danish")
```