SHENJJ1017 commited on
Commit
0fd7295
·
verified ·
1 Parent(s): ff4a18e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -27,14 +27,33 @@ configs:
27
 
28
  This dataset pairs UniMorph inflectional features with UniSegments segmentations. For languages without UniSegments coverage, segmentation defaults to the unsegmented word form itself.
29
 
 
 
 
30
  ## Sources
31
 
32
- - UniMorph: https://unimorph.github.io/
33
- - UniSegments: https://ufal.mff.cuni.cz/universal-segmentations
34
 
35
  ## Data Generation Logic
36
 
37
- For each language `lang` (ISO 639-3), the UniMorph source file is `{lang}.segmentations` when present, otherwise `{lang}`. When a UniSegments resource exists for a language, it is preferred from MorphyNet when multiple resources are available. For each UniMorph line, output `(form, features, segments)` where `form` is UniMorph column 2, `features` is UniMorph column 3, and `segments` comes from UniSegments column 4 with `" + "` replaced by `|`. If a language has no UniSegments file, `segments` is set to the unsegmented `form`. Output is a CSV without headers at `{lang}.csv`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
 
39
  ## Language Availability
40
 
@@ -242,3 +261,16 @@ Each language file inherits the more restrictive license between its UniMorph so
242
  - `.gitattributes` marks `*.csv` for Git LFS.
243
  - `.gitignore` is provided for common local artifacts.
244
  - `*.csv` files are per-language datasets at the repository root.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
  This dataset pairs UniMorph inflectional features with UniSegments segmentations. For languages without UniSegments coverage, segmentation defaults to the unsegmented word form itself.
29
 
30
+ **This resource is a necessary component for evaluating Tokenizer Morphological Plausibility**, as introduced in *Tokenizer Morphological Plausibility* (https://arxiv.org/abs/2601.18536). The data generation process follows the implementation provided in the official repository of the paper:
31
+ https://github.com/abishekjs/morph-tok-eval/blob/main/data.py
32
+
33
  ## Sources
34
 
35
+ - UniMorph: https://unimorph.github.io/
36
+ - UniSegments: https://ufal.mff.cuni.cz/universal-segmentations
37
 
38
  ## Data Generation Logic
39
 
40
+ For each language `lang` (ISO 639-3), the UniMorph source file is `{lang}.segmentations` when present, otherwise `{lang}`. When a UniSegments resource exists for a language, it is preferred from MorphyNet when multiple resources are available. For each UniMorph line, output:
41
+
42
+ ```
43
+ (form, features, segments)
44
+ ```
45
+
46
+ where:
47
+
48
+ * `form` is UniMorph column 2
49
+ * `features` is UniMorph column 3
50
+ * `segments` comes from UniSegments column 4 with `" + "` replaced by `|`
51
+
52
+ If a language has no UniSegments file, `segments` is set to the unsegmented `form`.
53
+
54
+ Output is a CSV without headers at `{lang}.csv`.
55
+
56
+ ---
57
 
58
  ## Language Availability
59
 
 
261
  - `.gitattributes` marks `*.csv` for Git LFS.
262
  - `.gitignore` is provided for common local artifacts.
263
  - `*.csv` files are per-language datasets at the repository root.
264
+
265
+
266
+ ## References
267
+
268
+ Batsuren et al. (2022). *UniMorph 4.0: Universal Morphology*. Proceedings of the Thirteenth Language Resources and Evaluation Conference (LREC 2022), Marseille, France. European Language Resources Association. Pages 840–855.
269
+ https://aclanthology.org/2022.lrec-1.89/
270
+
271
+ Žabokrtský et al. (2022). *Towards Universal Segmentations: UniSegments 1.0*. Proceedings of the Thirteenth Language Resources and Evaluation Conference (LREC 2022), Marseille, France. European Language Resources Association. Pages 1137–1149.
272
+ https://aclanthology.org/2022.lrec-1.122/
273
+
274
+ Stephen, A., & Libovický, J. (2026). *Evaluating Morphological Plausibility of Subword Tokenization via Statistical Alignment with Morpho-Syntactic Features*. arXiv preprint arXiv:2601.18536.
275
+ https://arxiv.org/abs/2601.18536
276
+