--- language: - he license: cc-by-nc-4.0 pretty_name: Dicta Unvocalized Hebrew Wordlist size_categories: - 1M e.g. "VERB"; same for binyan, gender, tense, ... ``` ## Columns | column | type | notes | |---|---|---| | `id` | int | per-row id | | `lemma_id` | int | one per unique vocalized `lex` (rows sharing a lemma share it) | | `word` | string | the word's most common full spelling, with matres lectionis (maleh). Not unique — rows can share a `word` with different lemma/morphology | | `haser` | string? | defective (haser) spelling — without matres lectionis — if distinct | | `maleh_forms` | list[string] | additional maleh spellings (with matres lectionis) believed to be in use, if any | | `lex` | string | vocalized lemma (dictionary form) | | `lex_maleh` | string | unvocalized maleh spelling of the lemma | | `root` | string? | consonantal root | | `pos` | ClassLabel | part of speech | | `binyan` | ClassLabel | verb stem | | `gender`, `number`, `person`, `tense`, `status` | ClassLabel | inflectional morphology | | `suffix_function`, `suffix_gender`, `suffix_number`, `suffix_person` | ClassLabel | pronominal suffix, null if none | | `shortened_form`, `inversive_vav`, `extended_form`, `poetry`, `aramaic`, `pre_modern_form`, `loazi_word`, `passive`, `tanakh` | bool | linguistic flags | Categorical columns are `ClassLabel`: the Parquet stores integer codes and the label names live in the file's feature metadata (recovered automatically by `datasets`). ### Label glossary (non-obvious values) - `pos`: `SHEL_PREP` = של and inflections thereof; `AT_PREP` = את and inflections thereof; `TITULAR` = title (e.g. ר', מר). - `person` / `suffix_person`: `ANY` = unspecified person. - `gender`: `MASCULINEFEMININE` = either. - `status`: `ABSOLUTECONSTRUCT` = form valid as both absolute and construct. - `suffix_function`: `POSSESIVEPRONOUN` (possessive) vs `ACCUSATIVENOMINATIVE` (object/subject clitic). Note: tagging of function words that carry suffixes is inconsistent. ## Maintainers: label stability (read before updating) Categorical columns are `ClassLabel`, and each integer code is the **position** of its name in the label list. When regenerating or extending this dataset — **by any means** — you must **only append new label values at the end**. Never reorder or insert: doing so silently remaps existing codes and breaks every consumer that compares against integers across versions.