KennethTM commited on
Commit
ac58c23
1 Parent(s): 18e2187

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -30,9 +30,16 @@ task_categories:
30
 
31
  This dataset is a version of the [ELI5 question-answer pairs dataset](https://huggingface.co/datasets/sentence-transformers/embedding-training-data) machine-translated from English to Danish ([Link to original dataset](https://huggingface.co/datasets/eli5)).
32
 
33
- Machine translation is performed using the [English-to-Danish OPUS-MT model](https://huggingface.co/Helsinki-NLP/opus-mt-en-da).
34
 
35
- The dataset contains ~209k question-answer pairs and can be used to train embedding and question-answer models.
36
 
37
  ## Usage
38
 
 
 
 
 
 
 
 
 
30
 
31
  This dataset is a version of the [ELI5 question-answer pairs dataset](https://huggingface.co/datasets/sentence-transformers/embedding-training-data) machine-translated from English to Danish ([Link to original dataset](https://huggingface.co/datasets/eli5)).
32
 
33
+ Machine translation is performed using the Helsinki NLP [English-to-Danish OPUS-MT model](https://huggingface.co/Helsinki-NLP/opus-mt-en-da).
34
 
35
+ The dataset contains ~209k question-answer pairs and can be used to train embedding and question-answer models. Each pair consists of one question ('query') and one answer ('passage').
36
 
37
  ## Usage
38
 
39
+ Using the HuggingFace datasets library:
40
+
41
+ ```python
42
+ from datasets import load_dataset
43
+
44
+ dataset = load_dataset("KennethTM/eli5_question_answer_danish")
45
+ ```