--- dataset_info: features: - name: query dtype: string - name: passage dtype: string splits: - name: train num_bytes: 69338889 num_examples: 87599 download_size: 11644151 dataset_size: 69338889 configs: - config_name: default data_files: - split: train path: data/train-* language: - da task_categories: - feature-extraction - question-answering license: cc-by-sa-4.0 --- # SQuAD question-answer pairs in Danish ## About This dataset is a version of the [SQuAD 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/squad)). 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 ~87k 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/squad_pairs_danish") ```