hhval commited on
Commit
b61fd8e
·
verified ·
1 Parent(s): 53b207e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -3
README.md CHANGED
@@ -1,3 +1,38 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - nb
5
+ - nn
6
+ - 'no'
7
+ pretty_name: Norwegian Language Q&A from Språkrådet
8
+ size_categories:
9
+ - 1K<n<10K
10
+ ---
11
+ # Norwegian Language Q&A Dataset
12
+
13
+ This Norwegian language dataset is a collection of question-and-answer entries from [Språkrådet](https://sprakradet.no/), the Language Council of Norway. The data was collected from the section of the website called [Språkspørsmål og svar](https://sprakradet.no/spraksporsmal-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.
14
+
15
+ *This dataset was collected and shared with Språkrådet's permission.*
16
+
17
+ ---
18
+ ## Dataset Structure
19
+
20
+ 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.
21
+
22
+ The dataset contains five columns:
23
+
24
+ 1. **link** - URL for each question and answer page
25
+ 2. **title** - question title
26
+ 3. **question** - question text
27
+ 4. **answer** - answer text
28
+ 5. **lang_type** - label for Bokmål ("nob") or Nynorsk ("nno")
29
+
30
+ ---
31
+ ## Using the dataset
32
+ Loading the dataset:
33
+ ```python
34
+ from datasets import load_dataset
35
+
36
+ ds = load_dataset("hhval/norwegian_qa")
37
+ ```
38
+