The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: CastError
Message: Couldn't cast
string: string
language: string
role: string
headword: string
transcriptions: list<item: string>
child 0, item: string
senses: list<item: struct<text: string, tags: list<item: string>>>
child 0, item: struct<text: string, tags: list<item: string>>
child 0, text: string
child 1, tags: list<item: string>
child 0, item: string
etymology: string
related_terms: list<item: struct<text: string>>
child 0, item: struct<text: string>
child 0, text: string
pronunciations: list<item: struct<text: string, system: string>>
child 0, item: struct<text: string, system: string>
child 0, text: string
child 1, system: string
to
{'string': Value('string'), 'language': Value('string'), 'role': Value('string'), 'headword': Json(decode=True), 'transcriptions': List(Json(decode=True)), 'pronunciations': List({'text': Value('string'), 'system': Value('string')}), 'senses': List({'text': Value('string')}), 'etymology': Value('string')}
because column names don't match
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
return get_rows(
^^^^^^^^^
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2227, in __iter__
for key, pa_table in self._iter_arrow():
^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2251, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 494, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 384, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 289, in _generate_tables
self._cast_table(pa_table, json_field_paths=json_field_paths),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 124, in _cast_table
pa_table = table_cast(pa_table, self.info.features.arrow_schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2272, in table_cast
return cast_table_to_schema(table, schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2218, in cast_table_to_schema
raise CastError(
datasets.table.CastError: Couldn't cast
string: string
language: string
role: string
headword: string
transcriptions: list<item: string>
child 0, item: string
senses: list<item: struct<text: string, tags: list<item: string>>>
child 0, item: struct<text: string, tags: list<item: string>>
child 0, text: string
child 1, tags: list<item: string>
child 0, item: string
etymology: string
related_terms: list<item: struct<text: string>>
child 0, item: struct<text: string>
child 0, text: string
pronunciations: list<item: struct<text: string, system: string>>
child 0, item: struct<text: string, system: string>
child 0, text: string
child 1, system: string
to
{'string': Value('string'), 'language': Value('string'), 'role': Value('string'), 'headword': Json(decode=True), 'transcriptions': List(Json(decode=True)), 'pronunciations': List({'text': Value('string'), 'system': Value('string')}), 'senses': List({'text': Value('string')}), 'etymology': Value('string')}
because column names don't matchNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
English Wiktionary Parsed Data
Structured linguistic data extracted from the English Wiktionary dump into JSONL. Even though it's the "English" Wiktionary, it is not limited to English, that is just one of many many languages it supports, but definitions are in English.
Covers definitions, IPA pronunciations, etymologies, translations, inflection tables, derived/related terms, synonyms, antonyms, descendants, and more across over a thousand languages.
Contents
base/
language.json
string/
english.jsonl
hebrew.jsonl
tibetan.jsonl
sanskrit.jsonl
chinese.jsonl
greek.jsonl
latin.jsonl
arabic.jsonl
...
string/<language>.jsonlhas one JSONL file per language. Records are sorted alphabetically by thestringfield.language.jsonlists every language as{ slug, name }, sorted alphabetically by name.
They are called "strings" b/c they can be not just words, but prefixes/suffixes/affixes, letters, multi-word terms, phrases, etc..
Usage
from datasets import load_dataset
strings = load_dataset("cluesurf/wiktionary-english", "string") # default
languages = load_dataset("cluesurf/wiktionary-english", "language")
Record schema
{
"string": "house",
"language": "english",
"role": "noun",
"headword": {
"text": "house"
},
"transcriptions": [
{ "text": "house", "script": "latin" }
],
"pronunciations": [
{ "text": "haʊ̯s", "system": "ipa", "accent": "GA" }
],
"senses": [
{
"text": "A structure built or serving as an abode of human beings.",
"tags": ["countable"],
"examples": [
{ "text": "This is my house." }
]
}
],
"etymology": "From Middle English hous, from Old English hus...",
"translations": [
{
"gloss": "abode",
"items": [
{ "language": "french", "word": "maison", "gender": "feminine" }
]
}
],
"inflections": [
{ "text": "houses", "labels": ["plural"] }
],
"derived_terms": [{ "text": "household" }],
"synonyms": [{ "text": "dwelling" }],
"rhymes": [{ "text": "aʊs" }]
}
Stats
4,616 languages. Top 20 by entry count:
| Language | Entries |
|---|---|
| English | 1.45M+ |
| Spanish | 768k+ |
| Latin | 686k+ |
| Italian | 579k+ |
| Portuguese | 408k+ |
| Russian | 389k+ |
| French | 372k+ |
| German | 353k+ |
| Swedish | 301k+ |
| Finnish | 258k+ |
| Galician | 200k+ |
| Polish | 186k+ |
| Catalan | 186k+ |
| Chinese | 166k+ |
| Japanese | 149k+ |
| Dutch | 135k+ |
| Esperanto | 133k+ |
| Romanian | 129k+ |
| Translingual | 90k+ |
| Latvian | 85k+ |
Data Dump
Parsed from the Wikimedia Enterprise HTML dump dated March 26 to April 1, 2026 UTC.
Raw dump accessed via:
curl -H "Authorization: Bearer <access-token>" \
-L https://api.enterprise.wikimedia.com/v2/snapshots/enwiktionary_namespace_0/download \
--output enwiktionary.tar.gz
Compressed gzipped file was about 17.9GB.
Sources
- English Wiktionary (Wikimedia Enterprise HTML dump)
- https://en.wiktionary.org
- https://dumps.wikimedia.org/other/enterprise_html/
TODO
- Parse accents
License
CC-BY-SA-4.0, inherited from Wiktionary.
- Downloads last month
- 49