alvations commited on
Commit
619d495
·
verified ·
1 Parent(s): dfa0add

Initial release: monolingual + en-de/fr/fi/cs configs + README

Browse files
README.md ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: IATE 2016 — Inter-Active Terminology for Europe
3
+ license: other
4
+ license_name: ec-decision-2011-833-eu
5
+ license_link: https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32011D0833
6
+ task_categories:
7
+ - translation
8
+ - feature-extraction
9
+ - token-classification
10
+ language:
11
+ - bg
12
+ - cs
13
+ - da
14
+ - de
15
+ - el
16
+ - en
17
+ - es
18
+ - et
19
+ - fi
20
+ - fr
21
+ - ga
22
+ - hr
23
+ - hu
24
+ - it
25
+ - lt
26
+ - lv
27
+ - mt
28
+ - nl
29
+ - pl
30
+ - pt
31
+ - ro
32
+ - sk
33
+ - sl
34
+ - sv
35
+ tags:
36
+ - terminology
37
+ - european-union
38
+ - multilingual
39
+ - parallel-terms
40
+ - eu-translation
41
+ size_categories:
42
+ - 1M<n<10M
43
+ configs:
44
+ - config_name: monolingual
45
+ data_files:
46
+ - split: train
47
+ path: data/monolingual/train.parquet
48
+ - config_name: en-de
49
+ data_files:
50
+ - split: train
51
+ path: data/en-de/train.parquet
52
+ - config_name: en-fr
53
+ data_files:
54
+ - split: train
55
+ path: data/en-fr/train.parquet
56
+ - config_name: en-fi
57
+ data_files:
58
+ - split: train
59
+ path: data/en-fi/train.parquet
60
+ - config_name: en-cs
61
+ data_files:
62
+ - split: train
63
+ path: data/en-cs/train.parquet
64
+ ---
65
+
66
+ # IATE 2016 — Inter-Active Terminology for Europe
67
+
68
+ Tidy HuggingFace release of the **IATE** terminology export dump from **2016-04-25** (the snapshot in `iate.zip`). IATE is the official multilingual terminology database of the EU institutions and bodies — see <https://iate.europa.eu>, <https://iate.europa.eu/faq>, and <https://iate.europa.eu/download-iate>.
69
+
70
+ This is the **2016 snapshot only**. IATE is continuously updated; for the latest dump pull from the official IATE download page.
71
+
72
+ Mirror of the raw upstream zip: [`alvations/stash · iate/iate.zip`](https://huggingface.co/datasets/alvations/stash/tree/main/iate).
73
+
74
+ ## Configs
75
+
76
+ | Config | Rows | Schema | Notes |
77
+ | ------------- | ---------: | ------ | ----- |
78
+ | `monolingual` | 6,148,883 | one row per `(term_id, lang)` entry | full multilingual TSV; spans all EU official languages (~24) |
79
+ | `en-de` | 546,974 | one row per aligned EN ↔ DE term pair | pre-aligned bilingual subset |
80
+ | `en-fr` | 730,779 | one row per aligned EN ↔ FR term pair | pre-aligned bilingual subset |
81
+ | `en-fi` | 226,688 | one row per aligned EN ↔ FI term pair | pre-aligned bilingual subset |
82
+ | `en-cs` | 13,524 | one row per aligned EN ↔ CS term pair | pre-aligned bilingual subset |
83
+
84
+ The upstream zip also contained `iate_en-ru.csv` / `.json` but they were empty (header only) — skipped.
85
+
86
+ ## Usage
87
+
88
+ ```python
89
+ from datasets import load_dataset
90
+
91
+ # Full multilingual dump
92
+ mono = load_dataset("alvations/iate-2016", "monolingual", split="train")
93
+ print(mono[0])
94
+ # {'term_id': 'IATE-14', 'lang': 'ro', 'term': 'Agenție de aprovizionare',
95
+ # 'term_type': 'fullForm', 'reliability': 3}
96
+
97
+ # Pre-aligned bilingual subsets (great as MT terminology gazetteers)
98
+ en_de = load_dataset("alvations/iate-2016", "en-de", split="train")
99
+ print(en_de[0])
100
+ # {'term_id': 'IATE-84',
101
+ # 'src_lang': 'en', 'src_term': 'competence of the Member States',
102
+ # 'tgt_lang': 'de', 'tgt_term': 'Zuständigkeit der Mitgliedstaaten'}
103
+
104
+ # Recover all language entries for a single term
105
+ mono_df = mono.to_pandas()
106
+ mono_df[mono_df["term_id"] == "IATE-84"]
107
+ # 23 rows — one per EU official language
108
+ ```
109
+
110
+ ## Schemas
111
+
112
+ ### `monolingual`
113
+
114
+ | Column | Type | Description |
115
+ | ------------- | ------ | ----------- |
116
+ | `term_id` | string | IATE entry id, e.g. `"IATE-14"` |
117
+ | `lang` | string | ISO-639-1 code (`en`, `de`, `fr`, `bg`, `el`, …) |
118
+ | `term` | string | the term text in that language |
119
+ | `term_type` | string | upstream type label: most commonly `fullForm` (the canonical form); sometimes abbreviation / short-form variants |
120
+ | `reliability` | int8 | reliability code, 1–5 (see "Reliability codes" below) |
121
+
122
+ ### `en-{de,fr,fi,cs}`
123
+
124
+ | Column | Type | Description |
125
+ | ----------- | ------ | ----------- |
126
+ | `term_id` | string | IATE entry id (same one shared across languages) |
127
+ | `src_lang` | string | always `"en"` |
128
+ | `src_term` | string | English term |
129
+ | `tgt_lang` | string | `"de"` / `"fr"` / `"fi"` / `"cs"` |
130
+ | `tgt_term` | string | target-language term |
131
+
132
+ The 4 bilingual configs share one schema, so you can `concatenate_datasets([...])` them with a single column projection.
133
+
134
+ ## Reliability codes (IATE convention)
135
+
136
+ | Code | Meaning |
137
+ | ---: | ------- |
138
+ | 1 | Not verified |
139
+ | 2 | Minimum reliability |
140
+ | 3 | Reliable (terminologist-checked) |
141
+ | 4 | Very reliable |
142
+ | 5 | Verified / institutional gold standard |
143
+
144
+ Most rows in this snapshot carry code `3` (reliable).
145
+
146
+ ## License & attribution
147
+
148
+ IATE data is reusable under the [European Commission Decision 2011/833/EU of 12 December 2011 on the reuse of Commission documents](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32011D0833). Reuse is free for both commercial and non-commercial purposes, provided you preserve the source attribution.
149
+
150
+ **Required attribution**:
151
+
152
+ > © European Union, 1995–2016. Source: IATE — Inter-Active Terminology for Europe (<https://iate.europa.eu>).
153
+
154
+ The data is provided "as is" with no warranty of accuracy or fitness for any particular purpose — the EU institutions accept no liability arising from its use.
155
+
156
+ ## Provenance
157
+
158
+ - Upstream zip: `iate.zip` containing 12 files (1 monolingual TSV, 4 bilingual `.csv`/`.json` pairs for EN-DE/FR/FI/CS, plus empty EN-RU); 564 MB uncompressed, snapshot 2016-04-25.
159
+ - Mirror: <https://huggingface.co/datasets/alvations/stash/tree/main/iate>
160
+ - Conversion: stream-build via `zipfile` + pyarrow `ParquetWriter` (no on-disk extraction). The 321 MB master CSV is written in 200K-row batches.
161
+ - Build script: `build.py` alongside this README.
162
+
163
+ ## Citation
164
+
165
+ There is no single canonical paper for IATE itself. Cite it as the EU institutional resource:
166
+
167
+ ```bibtex
168
+ @misc{iate,
169
+ title = {{IATE} -- Interactive Terminology for {E}urope},
170
+ author = {{Translation Centre for the Bodies of the European Union and EU Institutions}},
171
+ year = {1995--2016},
172
+ note = {Snapshot of 2016-04-25. Released under EC Decision 2011/833/EU.},
173
+ url = {https://iate.europa.eu/},
174
+ }
175
+ ```
176
+
177
+ For newer / continuously-updated dumps, pull from <https://iate.europa.eu/download-iate>.
data/en-cs/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ff5accee187402adc7d91ff65f3e0bb55dd337e0e5496db3af95ab3516cf693
3
+ size 571796
data/en-de/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:553ff1855db1482a981d9e5527bba5d11866a77367510cf8be96a5f6b7c776ff
3
+ size 18310217
data/en-fi/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3d7b9f77d232f5fa4a9fcce5f7f1d424ca39d04f6f85d77d9203a382c7a08ea
3
+ size 7295310
data/en-fr/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a981fdb17a50a7bb4678d8374762d9ad5083febc3d0cc7304c9d9092da6caac
3
+ size 24830966
data/monolingual/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:015ef9abf9258561665ee67a1f45582b4a2d1863f2c663439aa4bfc3e70d553b
3
+ size 119523087