tetchegoyhen commited on
Commit
7215a71
·
verified ·
1 Parent(s): be87f2c

Update README

Browse files
Files changed (1) hide show
  1. README.md +90 -3
README.md CHANGED
@@ -1,3 +1,90 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "IREKIER: An Easy Read Corpus for Basque and Spanish"
3
+ language:
4
+ - es
5
+ - eu
6
+ license: cc-by-nc-sa-4.0
7
+ multilinguality: multilingual
8
+ task_categories:
9
+ - text-generation
10
+ task_ids:
11
+ - text-simplification
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # IREKIER: An Easy Read Corpus for Basque and Spanish
17
+
18
+ This dataset contains Spanish (`es`) and Basque (`eu`) Easy Read articles from the Basque Government's transparency portal (Irekia) in two alignment granularities:
19
+
20
+ - `doc-almt`: document-level aligned pairs
21
+ - `paragraph-almt`: paragraph-level aligned pairs (train/dev/test)
22
+
23
+ ## Dataset structure
24
+
25
+ ### Document-level alignments (`doc-almt`)
26
+
27
+ - `es/doc-almt/documents.json`
28
+ - `eu/doc-almt/documents.json`
29
+
30
+ Each entry contains:
31
+
32
+ - `id`: document id
33
+ - `src`: complex,original document text
34
+ - `tgt.seg`: adapted segmented version
35
+ - `tgt.no_seg`: adapted non-segmented version
36
+
37
+ ### Paragraph-level alignments (`paragraph-almt`)
38
+
39
+ Spanish:
40
+ - `es/paragraph-almt/train.json`
41
+ - `es/paragraph-almt/dev.json`
42
+ - `es/paragraph-almt/test.json`
43
+
44
+ Basque:
45
+ - `eu/paragraph-almt/train.json`
46
+ - `eu/paragraph-almt/dev.json`
47
+ - `eu/paragraph-almt/test.json`
48
+
49
+ All paragraph files are JSON arrays of documents:
50
+
51
+ - `id` (string): document id
52
+ - `alignments` (array): list of aligned paragraph pairs for that document
53
+
54
+ Each item in `alignments` contains:
55
+
56
+ - `src` (string): source,complex paragraph text
57
+ - `tgt` (string): adapted paragraph text
58
+
59
+ Split-specific note:
60
+
61
+ - `train.json` alignments also include `score` (float similarity score)
62
+ - `dev.json` and `test.json` alignments contain only `src` and `tgt`
63
+
64
+ These files provide paragraph alignment data for training, development, and evaluation.
65
+
66
+ Full details of alignment process can be found in the Citation reference.
67
+
68
+ ## Languages
69
+
70
+ - Spanish (`es`)
71
+ - Basque (`eu`)
72
+
73
+ ## License
74
+
75
+ This dataset is distributed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license (CC BY-NC-SA 4.0).
76
+
77
+ ## Citation
78
+
79
+ If you use this dataset, please cite:
80
+
81
+
82
+ ```bibtex
83
+ @inproceedings{calleja2026irekier,
84
+ title = {{IREKIER: An Easy Read Corpus for Basque and Spanish}},
85
+ author = {Calleja, Jesús and Etchegoyhen, Thierry},
86
+ booktitle = {Proceedings of the 15th edition of the Language Resources and Evaluation Conference (LREC 2026)},
87
+ note = {to appear}
88
+ year = {2026}
89
+ }
90
+ ```