KennethTM commited on
Commit
35ab1ef
1 Parent(s): 8346ce5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md CHANGED
@@ -16,4 +16,32 @@ configs:
16
  data_files:
17
  - split: train
18
  path: data/train-*
 
 
 
 
 
 
 
 
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
+ language:
20
+ - da
21
+ task_categories:
22
+ - feature-extraction
23
+ - question-answering
24
+ size_categories:
25
+ - 1M<n<10M
26
+ license: apache-2.0
27
  ---
28
+
29
+ # GooAQ (Google Answers to Google Questions) question-answer pairs in Danish
30
+
31
+ ## About
32
+
33
+ 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)).
34
+
35
+ Machine translation is performed using the Helsinki NLP [English-to-Danish OPUS-MT model](https://huggingface.co/Helsinki-NLP/opus-mt-en-da).
36
+
37
+ 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').
38
+
39
+ ## Usage
40
+
41
+ Using the HuggingFace datasets library:
42
+
43
+ ```python
44
+ from datasets import load_dataset
45
+
46
+ dataset = load_dataset("KennethTM/gooaq_pairs_danish")
47
+ ```