norwegian_qa / README.md
hhval's picture
Update README.md
b61fd8e verified
metadata
license: apache-2.0
language:
  - nb
  - nn
  - 'no'
pretty_name: Norwegian Language Q&A from Språkrådet
size_categories:
  - 1K<n<10K

Norwegian Language Q&A Dataset

This Norwegian language dataset is a collection of question-and-answer entries from Språkrådet, the Language Council of Norway. The data was collected from the section of the website called Språkspørsmål og svar, which contains questions and answers on the subject of Norwegian language usage and grammar. The data contains a mix of Bokmål and Nynorsk. The data was collected on March 7, 2025.

This dataset was collected and shared with Språkrådet's permission.


Dataset Structure

The dataset consists of 1095 rows of question and answer pairs. 378 of the rows contain the word "Nynorsk". Often this means the text content for this question is all Nynorsk, but some entries are mainly in Bokmål but briefly mention Nynorsk. Depending on your use case you might need to filter these further.

The dataset contains five columns:

  1. link - URL for each question and answer page
  2. title - question title
  3. question - question text
  4. answer - answer text
  5. lang_type - label for Bokmål ("nob") or Nynorsk ("nno")

Using the dataset

Loading the dataset:

from datasets import load_dataset

ds = load_dataset("hhval/norwegian_qa")