Translation
Transformers
Safetensors
m2m_100
text2text-generation
nllb-200
formosan-languages
low-resource
Eval Results (legacy)
Instructions to use FormosanBank/nllb200-zh-formosan-spm8k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FormosanBank/nllb200-zh-formosan-spm8k with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="FormosanBank/nllb200-zh-formosan-spm8k")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("FormosanBank/nllb200-zh-formosan-spm8k") model = AutoModelForSeq2SeqLM.from_pretrained("FormosanBank/nllb200-zh-formosan-spm8k", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Publish nllb200-spm8k-directional-v5 best checkpoint (20260816-193900)
Browse files- README.md +57 -54
- added_tokens.json +100 -307
- config.json +1 -1
- eval/metrics.json +0 -0
- experiment_metadata.json +129 -113
- model.safetensors +2 -2
- mt_standardization.py +8 -4
- mt_standardization_profile.json +1 -1
- publication.json +10 -10
- sentencepiece.bpe.model +2 -2
- special_tokens_map.json +6 -213
- tokenizer_config.json +146 -2009
- training_profile.json +23 -31
README.md
CHANGED
|
@@ -42,41 +42,46 @@ model-index:
|
|
| 42 |
metrics:
|
| 43 |
- type: bleu
|
| 44 |
name: sacreBLEU
|
| 45 |
-
value:
|
| 46 |
- type: chrf
|
| 47 |
name: chrF2
|
| 48 |
-
value:
|
| 49 |
- type: ter
|
| 50 |
name: TER
|
| 51 |
-
value:
|
| 52 |
---
|
| 53 |
|
| 54 |
# nllb200-zh-formosan-spm8k
|
| 55 |
|
| 56 |
**Direction:** Traditional Chinese to Formosan<br>
|
| 57 |
**Base model:** [`facebook/nllb-200-distilled-600M`](https://huggingface.co/facebook/nllb-200-distilled-600M)<br>
|
| 58 |
-
**Recipe:** `nllb200-spm8k-directional-
|
| 59 |
-
**Release:** `
|
| 60 |
|
| 61 |
This is a directional model for 15 Formosan languages. It uses the
|
| 62 |
`private_no_bible` leakage-controlled corpus, Formosan-aware 8k SentencePiece extension, balanced
|
| 63 |
-
language/source sampling,
|
| 64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
## Model details
|
| 67 |
|
| 68 |
| Item | Value |
|
| 69 |
|---|---|
|
| 70 |
| Base revision | `f8d333a098d19b4fd9a8b18f94170487ad3f821d` |
|
| 71 |
-
| Training rows |
|
| 72 |
| Effective batch size | 64 |
|
| 73 |
| Maximum sequence length | 384 |
|
| 74 |
| Learning rate | 2e-05 |
|
| 75 |
| Precision | `bf16` |
|
| 76 |
-
| Checkpoint selection |
|
| 77 |
| Formosan text | `kindOf=standard`, `formosan-mt-standard-v3` |
|
| 78 |
-
| Corpus SHA-256 | `
|
| 79 |
-
| Training profile SHA-256 | `
|
| 80 |
|
| 81 |
## Usage
|
| 82 |
|
|
@@ -94,9 +99,15 @@ NLLB_LIDS = {'ami': 'ami_Latn', 'bnn': 'bnn_Latn', 'ckv': 'ckv_Latn', 'dru': 'dr
|
|
| 94 |
def translate(text, lang_code, source_bucket="unknown", dialect="default"):
|
| 95 |
|
| 96 |
tokenizer.src_lang = 'zho_Hant'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
prompt = (
|
| 98 |
-
f"<to_{lang_code}> <src_zh>
|
| 99 |
-
f"<dialect_{dialect}> {text}"
|
| 100 |
)
|
| 101 |
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 102 |
output = model.generate(
|
|
@@ -116,63 +127,55 @@ when source bucket or dialect metadata is unavailable.
|
|
| 116 |
|
| 117 |
## Evaluation
|
| 118 |
|
| 119 |
-
The best checkpoint was selected on
|
| 120 |
-
|
|
|
|
| 121 |
The headline result uses `default` metadata controls, so it does not
|
| 122 |
assume access to test-set domain or dialect labels.
|
| 123 |
|
| 124 |
| Split | Rows |
|
| 125 |
|---|---:|
|
| 126 |
-
| Train |
|
| 127 |
-
| Test |
|
| 128 |
-
| Validate |
|
| 129 |
|
| 130 |
| Scope | BLEU | chrF2 | TER |
|
| 131 |
|---|---:|---:|---:|
|
| 132 |
-
| Hard test |
|
| 133 |
-
| Selection validation |
|
| 134 |
|
| 135 |
-
Test empty-output rate: 0.
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
### Confidence intervals
|
| 139 |
-
|
| 140 |
-
Stratified bootstrap, 200 samples, 95% confidence.
|
| 141 |
-
|
| 142 |
-
| Metric | Lower | Upper |
|
| 143 |
-
|---|---:|---:|
|
| 144 |
-
| BLEU | 8.09 | 8.31 |
|
| 145 |
-
| chrF2 | 32.49 | 32.73 |
|
| 146 |
-
| TER | 83.79 | 84.89 |
|
| 147 |
|
| 148 |
|
| 149 |
| Language | Samples | BLEU | chrF2 | TER |
|
| 150 |
|---|---:|---:|---:|---:|
|
| 151 |
-
| `ami` |
|
| 152 |
-
| `bnn` | 6,
|
| 153 |
-
| `ckv` |
|
| 154 |
-
| `dru` | 6,
|
| 155 |
-
| `pwn` | 5,
|
| 156 |
-
| `pyu` | 4,
|
| 157 |
-
| `ssf` |
|
| 158 |
-
| `sxr` | 1,
|
| 159 |
-
| `szy` | 2,
|
| 160 |
-
| `tao` |
|
| 161 |
-
| `tay` |
|
| 162 |
-
| `trv` |
|
| 163 |
-
| `tsu` | 2,
|
| 164 |
-
| `xnb` | 2,
|
| 165 |
-
| `xsy` |
|
| 166 |
-
|
| 167 |
-
The corpus gate enforces standard-tier Formosan text,
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
|
|
|
|
|
|
| 171 |
0, skeleton
|
| 172 |
0, one-edit
|
| 173 |
0, character n-gram
|
| 174 |
-
0
|
| 175 |
-
|
| 176 |
|
| 177 |
See `eval/metrics.json` for sacreBLEU signatures, per-language, source,
|
| 178 |
dialect, and length diagnostics. `publication.json` records the corpus,
|
|
|
|
| 42 |
metrics:
|
| 43 |
- type: bleu
|
| 44 |
name: sacreBLEU
|
| 45 |
+
value: 10.520457
|
| 46 |
- type: chrf
|
| 47 |
name: chrF2
|
| 48 |
+
value: 35.064121
|
| 49 |
- type: ter
|
| 50 |
name: TER
|
| 51 |
+
value: 80.016573
|
| 52 |
---
|
| 53 |
|
| 54 |
# nllb200-zh-formosan-spm8k
|
| 55 |
|
| 56 |
**Direction:** Traditional Chinese to Formosan<br>
|
| 57 |
**Base model:** [`facebook/nllb-200-distilled-600M`](https://huggingface.co/facebook/nllb-200-distilled-600M)<br>
|
| 58 |
+
**Recipe:** `nllb200-spm8k-directional-v5`<br>
|
| 59 |
+
**Release:** `20260816-193900`, validation-selected step 300,000
|
| 60 |
|
| 61 |
This is a directional model for 15 Formosan languages. It uses the
|
| 62 |
`private_no_bible` leakage-controlled corpus, Formosan-aware 8k SentencePiece extension, balanced
|
| 63 |
+
language/source sampling, direction/language controls, fixed coarse domain
|
| 64 |
+
tags, and dialect tags. Domain and dialect metadata use independent training
|
| 65 |
+
dropout so `unknown` and `default` are learned inference conditions. The model
|
| 66 |
+
weights are public. The training corpus is distributed separately to
|
| 67 |
+
authorized FormosanBank members through the access-controlled
|
| 68 |
+
[`FormosanBank/formosan-mt-private`](https://huggingface.co/datasets/FormosanBank/formosan-mt-private)
|
| 69 |
+
dataset and is not included with the weights.
|
| 70 |
|
| 71 |
## Model details
|
| 72 |
|
| 73 |
| Item | Value |
|
| 74 |
|---|---|
|
| 75 |
| Base revision | `f8d333a098d19b4fd9a8b18f94170487ad3f821d` |
|
| 76 |
+
| Training rows | 625,460 |
|
| 77 |
| Effective batch size | 64 |
|
| 78 |
| Maximum sequence length | 384 |
|
| 79 |
| Learning rate | 2e-05 |
|
| 80 |
| Precision | `bf16` |
|
| 81 |
+
| Checkpoint selection | Validation `chrF2` |
|
| 82 |
| Formosan text | `kindOf=standard`, `formosan-mt-standard-v3` |
|
| 83 |
+
| Corpus SHA-256 | `0024e7fcd35958455a2a060b20999e94b5e8a4364e7f54ba97ef27810746d932` |
|
| 84 |
+
| Training profile SHA-256 | `4253b1b136fedebc589da942b80df71945212d1f4b92a8e98ec6fb160712f14b` |
|
| 85 |
|
| 86 |
## Usage
|
| 87 |
|
|
|
|
| 99 |
def translate(text, lang_code, source_bucket="unknown", dialect="default"):
|
| 100 |
|
| 101 |
tokenizer.src_lang = 'zho_Hant'
|
| 102 |
+
source_bucket = source_bucket if source_bucket in ('dictionary', 'classroom', 'narrative', 'linguistic', 'education', 'media', 'culture', 'religious', 'unknown') else "unknown"
|
| 103 |
+
domain_tag = f"<dom_{source_bucket}>"
|
| 104 |
+
if tokenizer.convert_tokens_to_ids(domain_tag) == tokenizer.unk_token_id:
|
| 105 |
+
domain_tag = "<dom_unknown>"
|
| 106 |
+
dialect_tag = f"<dialect_{dialect}>"
|
| 107 |
+
if tokenizer.convert_tokens_to_ids(dialect_tag) == tokenizer.unk_token_id:
|
| 108 |
+
dialect_tag = "<dialect_default>"
|
| 109 |
prompt = (
|
| 110 |
+
f"<to_{lang_code}> <src_zh> {domain_tag} {dialect_tag} {text}"
|
|
|
|
| 111 |
)
|
| 112 |
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 113 |
output = model.generate(
|
|
|
|
| 127 |
|
| 128 |
## Evaluation
|
| 129 |
|
| 130 |
+
The best checkpoint was selected on validation chrF2. Test and validation
|
| 131 |
+
contain only eligible, human-translated sentence pairs. Synthetic pivots and
|
| 132 |
+
lexical entries are train-only.
|
| 133 |
The headline result uses `default` metadata controls, so it does not
|
| 134 |
assume access to test-set domain or dialect labels.
|
| 135 |
|
| 136 |
| Split | Rows |
|
| 137 |
|---|---:|
|
| 138 |
+
| Train | 625,460 |
|
| 139 |
+
| Test | 73,591 |
|
| 140 |
+
| Validate | 36,797 |
|
| 141 |
|
| 142 |
| Scope | BLEU | chrF2 | TER |
|
| 143 |
|---|---:|---:|---:|
|
| 144 |
+
| Hard test | 10.52 | 35.06 | 80.02 |
|
| 145 |
+
| Selection validation | 9.46 | 35.82 | 83.08 |
|
| 146 |
|
| 147 |
+
Test empty-output rate: 0.0000%.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 148 |
|
| 149 |
|
| 150 |
| Language | Samples | BLEU | chrF2 | TER |
|
| 151 |
|---|---:|---:|---:|---:|
|
| 152 |
+
| `ami` | 14,348 | 8.40 | 30.97 | 83.12 |
|
| 153 |
+
| `bnn` | 6,048 | 7.78 | 36.24 | 84.72 |
|
| 154 |
+
| `ckv` | 2,871 | 22.62 | 48.09 | 60.42 |
|
| 155 |
+
| `dru` | 6,588 | 4.03 | 28.21 | 97.14 |
|
| 156 |
+
| `pwn` | 5,945 | 6.09 | 33.16 | 90.98 |
|
| 157 |
+
| `pyu` | 4,334 | 11.81 | 37.37 | 76.99 |
|
| 158 |
+
| `ssf` | 2,150 | 21.53 | 50.02 | 56.10 |
|
| 159 |
+
| `sxr` | 1,968 | 7.19 | 41.72 | 86.80 |
|
| 160 |
+
| `szy` | 2,300 | 17.42 | 43.22 | 67.77 |
|
| 161 |
+
| `tao` | 2,360 | 12.30 | 36.10 | 72.84 |
|
| 162 |
+
| `tay` | 7,161 | 4.62 | 24.52 | 92.61 |
|
| 163 |
+
| `trv` | 10,728 | 10.91 | 33.51 | 72.50 |
|
| 164 |
+
| `tsu` | 2,048 | 12.91 | 38.60 | 73.06 |
|
| 165 |
+
| `xnb` | 2,590 | 18.48 | 50.69 | 61.18 |
|
| 166 |
+
| `xsy` | 2,152 | 21.81 | 47.25 | 63.76 |
|
| 167 |
+
|
| 168 |
+
The corpus gate enforces standard-tier Formosan text, 5/10
|
| 169 |
+
validation/test proportions from all deduplicated pairs, capacity-aware source
|
| 170 |
+
balance, sentence-only evaluation, and
|
| 171 |
+
zero exact, skeleton, one-edit, or configured high character n-gram
|
| 172 |
+
train/evaluation conflicts. Document overlap is diagnostic. This release
|
| 173 |
+
passed all leakage gates: exact
|
| 174 |
0, skeleton
|
| 175 |
0, one-edit
|
| 176 |
0, character n-gram
|
| 177 |
+
0. Document overlap:
|
| 178 |
+
1439.
|
| 179 |
|
| 180 |
See `eval/metrics.json` for sacreBLEU signatures, per-language, source,
|
| 181 |
dialect, and length diagnostics. `publication.json` records the corpus,
|
added_tokens.json
CHANGED
|
@@ -1,309 +1,102 @@
|
|
| 1 |
{
|
| 2 |
-
"<dialect_central>":
|
| 3 |
-
"<dialect_coastal>":
|
| 4 |
-
"<dialect_dawu>":
|
| 5 |
-
"<dialect_default>":
|
| 6 |
-
"<dialect_deluvalley>":
|
| 7 |
-
"<dialect_dona>":
|
| 8 |
-
"<dialect_duda>":
|
| 9 |
-
"<dialect_eastern>":
|
| 10 |
-
"<dialect_fourseasons>":
|
| 11 |
-
"<dialect_hengchun>":
|
| 12 |
-
"<dialect_jianhe>":
|
| 13 |
-
"<dialect_junqun>":
|
| 14 |
-
"<dialect_kanakanavu>":
|
| 15 |
-
"<dialect_kaqun>":
|
| 16 |
-
"<dialect_kavalan>":
|
| 17 |
-
"<dialect_luanqun>":
|
| 18 |
-
"<dialect_malan>":
|
| 19 |
-
"<dialect_maolin>":
|
| 20 |
-
"<dialect_nanwang>":
|
| 21 |
-
"<dialect_northern>":
|
| 22 |
-
"<dialect_saaroa>":
|
| 23 |
-
"<dialect_saisiyat>":
|
| 24 |
-
"<dialect_sakizaya>":
|
| 25 |
-
"<dialect_sekolik>":
|
| 26 |
-
"<dialect_southern>":
|
| 27 |
-
"<dialect_tanqun>":
|
| 28 |
-
"<dialect_tegudaya>":
|
| 29 |
-
"<dialect_thao>":
|
| 30 |
-
"<dialect_truku>":
|
| 31 |
-
"<dialect_tsou>":
|
| 32 |
-
"<dialect_unknown>":
|
| 33 |
-
"<dialect_wanda>":
|
| 34 |
-
"<dialect_wanshan>":
|
| 35 |
-
"<dialect_wenshui>":
|
| 36 |
-
"<dialect_wutai>":
|
| 37 |
-
"<dialect_xiqun>":
|
| 38 |
-
"<dialect_xiuguluan>":
|
| 39 |
-
"<dialect_yami>":
|
| 40 |
-
"<dialect_yilanzeaol>":
|
| 41 |
-
"<dialect_zeaol>":
|
| 42 |
-
"<dialect_zhiben>":
|
| 43 |
-
"<dialect_zhuoqun>":
|
| 44 |
-
"<
|
| 45 |
-
"<dom_culture>":
|
| 46 |
-
"<dom_dictionary>":
|
| 47 |
-
"<
|
| 48 |
-
"<
|
| 49 |
-
"<
|
| 50 |
-
"<
|
| 51 |
-
"<
|
| 52 |
-
"<
|
| 53 |
-
"<
|
| 54 |
-
"<
|
| 55 |
-
"<
|
| 56 |
-
"<
|
| 57 |
-
"<
|
| 58 |
-
"<
|
| 59 |
-
"<
|
| 60 |
-
"<
|
| 61 |
-
"<
|
| 62 |
-
"<
|
| 63 |
-
"<
|
| 64 |
-
"<
|
| 65 |
-
"<
|
| 66 |
-
"<
|
| 67 |
-
"<
|
| 68 |
-
"<
|
| 69 |
-
"<
|
| 70 |
-
"<
|
| 71 |
-
"<
|
| 72 |
-
"<
|
| 73 |
-
"<
|
| 74 |
-
"<
|
| 75 |
-
"<
|
| 76 |
-
"<
|
| 77 |
-
"<
|
| 78 |
-
"<
|
| 79 |
-
"<
|
| 80 |
-
"<
|
| 81 |
-
"<
|
| 82 |
-
"<
|
| 83 |
-
"<
|
| 84 |
-
"<
|
| 85 |
-
"<
|
| 86 |
-
"<
|
| 87 |
-
"
|
| 88 |
-
"
|
| 89 |
-
"
|
| 90 |
-
"
|
| 91 |
-
"
|
| 92 |
-
"
|
| 93 |
-
"
|
| 94 |
-
"
|
| 95 |
-
"
|
| 96 |
-
"
|
| 97 |
-
"
|
| 98 |
-
"
|
| 99 |
-
"
|
| 100 |
-
"
|
| 101 |
-
"
|
| 102 |
-
"<dom_formosan_gitbook_translations>": 261472,
|
| 103 |
-
"<dom_formosan_glosbe>": 261473,
|
| 104 |
-
"<dom_formosan_gujing_lin_tsou_serial_verb_constructio>": 261474,
|
| 105 |
-
"<dom_formosan_henry_chang_nominal_aspect_tsou>": 261475,
|
| 106 |
-
"<dom_formosan_henry_chang_tsou_causative_applicative>": 261476,
|
| 107 |
-
"<dom_formosan_henry_y_chang_formosan_speech_act_mood>": 261477,
|
| 108 |
-
"<dom_formosan_ho_dan_phonological_system_butonglu_pai>": 261478,
|
| 109 |
-
"<dom_formosan_holmer_seediq>": 261479,
|
| 110 |
-
"<dom_formosan_hsiu_chuan_liao_transitivity_ergativity>": 261480,
|
| 111 |
-
"<dom_formosan_huang_dongqiu_atayal_bunun_amis_languag>": 261481,
|
| 112 |
-
"<dom_formosan_huang_grammaticalization_squliq_atayal>": 261482,
|
| 113 |
-
"<dom_formosan_huang_hui_chuan_glide_formation_takitud>": 261483,
|
| 114 |
-
"<dom_formosan_huang_mei_chin_atayal_reference_grammar>": 261484,
|
| 115 |
-
"<dom_formosan_hui_chuan_j_huang_syllable_types_in_bun>": 261485,
|
| 116 |
-
"<dom_formosan_hui_shan_lin_squliq_atayal_reduplicatio>": 261486,
|
| 117 |
-
"<dom_formosan_huteson_rukai_survey>": 261487,
|
| 118 |
-
"<dom_formosan_ian_maddieson_and_richard_wright_the_vo>": 261488,
|
| 119 |
-
"<dom_formosan_ilrdf_42_language_practice_word_lists>": 261489,
|
| 120 |
-
"<dom_formosan_ilrdf_tousvusvutu_kita>": 261490,
|
| 121 |
-
"<dom_formosan_indigenous_education_resource_center_ke>": 261491,
|
| 122 |
-
"<dom_formosan_indigenous_language_literary_awards>": 261492,
|
| 123 |
-
"<dom_formosan_isabelle_bril_roots_and_stems_lexical_a>": 261493,
|
| 124 |
-
"<dom_formosan_jian_iwan_guo_qingliu_life_history>": 261494,
|
| 125 |
-
"<dom_formosan_jian_shilang_introduction_thao_grammar>": 261495,
|
| 126 |
-
"<dom_formosan_john_tu_er_wei_notes_on_the_religious_b>": 261496,
|
| 127 |
-
"<dom_formosan_john_u_wolff_the_proto_austronesian_pho>": 261497,
|
| 128 |
-
"<dom_formosan_jonathan_kuo_amis_manner_result_verbs>": 261498,
|
| 129 |
-
"<dom_formosan_josiane_cauquelin_aborigines_taiwan_puy>": 261499,
|
| 130 |
-
"<dom_formosan_joy_wu_clausal_modifiers_in_amis>": 261500,
|
| 131 |
-
"<dom_formosan_joy_wu_verb_classification_case_marking>": 261501,
|
| 132 |
-
"<dom_formosan_kanakanavu_texts>": 261502,
|
| 133 |
-
"<dom_formosan_kavalan_zhang_reference_grammar>": 261503,
|
| 134 |
-
"<dom_formosan_kumu_tapas_tribal_memory_oral_history_w>": 261504,
|
| 135 |
-
"<dom_formosan_kuo_j_c_argument_alternation_and_argume>": 261505,
|
| 136 |
-
"<dom_formosan_lei_shih_family_system_paiwan_at_su_pai>": 261506,
|
| 137 |
-
"<dom_formosan_li_chen_yeh_developing_a_hla_alua_learn>": 261507,
|
| 138 |
-
"<dom_formosan_li_may_sung_budai_rukai_exclamatives>": 261508,
|
| 139 |
-
"<dom_formosan_li_may_sung_clausal_nominalization_buda>": 261509,
|
| 140 |
-
"<dom_formosan_lillian_huang_atayal_participants_cross>": 261510,
|
| 141 |
-
"<dom_formosan_lillian_huang_ergativity_atayal>": 261511,
|
| 142 |
-
"<dom_formosan_liu_manyi_kaskun_ata_matas_i_ki_quaz>": 261512,
|
| 143 |
-
"<dom_formosan_malcom_d_ross_the_history_and_transitiv>": 261513,
|
| 144 |
-
"<dom_formosan_malcom_ross_proto_austronesian_verbal_m>": 261514,
|
| 145 |
-
"<dom_formosan_man_ni_chu_the_measurement_of_final_i_v>": 261515,
|
| 146 |
-
"<dom_formosan_matsuzawa_kazuko_the_social_and_ritual>": 261516,
|
| 147 |
-
"<dom_formosan_maya_yeh_blaq_uv_construction_atayal>": 261517,
|
| 148 |
-
"<dom_formosan_mayumi_oiwa_adverbial_verb_construction>": 261518,
|
| 149 |
-
"<dom_formosan_mayumi_oiwa_bungard_morphology_and_synt>": 261519,
|
| 150 |
-
"<dom_formosan_mayumi_oiwa_possessor_raising_truku_see>": 261520,
|
| 151 |
-
"<dom_formosan_mei_chin_huang_verb_classification_in_m>": 261521,
|
| 152 |
-
"<dom_formosan_melissa_shih_hui_lin_sakizaya_or_amis_a>": 261522,
|
| 153 |
-
"<dom_formosan_nanang_tadaw_naci_mowna_pgagu>": 261523,
|
| 154 |
-
"<dom_formosan_naomi_tsukida_correlative_clauses_seedi>": 261524,
|
| 155 |
-
"<dom_formosan_naomi_tsukida_ditransitive_causative_se>": 261525,
|
| 156 |
-
"<dom_formosan_nowbucyang_truku_thesis>": 261526,
|
| 157 |
-
"<dom_formosan_ochiai_izumi_2016_comparative_linguisti>": 261527,
|
| 158 |
-
"<dom_formosan_ochiai_izumi_bu_hwan_vocabulary_recorde>": 261528,
|
| 159 |
-
"<dom_formosan_ochiai_izumi_numerals_paran_seediq_rela>": 261529,
|
| 160 |
-
"<dom_formosan_ochiai_izumi_on_a_seediq_glossary_recor>": 261530,
|
| 161 |
-
"<dom_formosan_old_texts>": 261531,
|
| 162 |
-
"<dom_formosan_paiwan_ho_five_dialects>": 261532,
|
| 163 |
-
"<dom_formosan_paiwanstories>": 261533,
|
| 164 |
-
"<dom_formosan_pang_hsin_ting_reconstruction_proto_puy>": 261534,
|
| 165 |
-
"<dom_formosan_patricia_stanley_morphophonemics_of_ver>": 261535,
|
| 166 |
-
"<dom_formosan_paul_jen_kuei_li_comparative_bunun_dial>": 261536,
|
| 167 |
-
"<dom_formosan_paul_jen_kuei_li_conjunction_thao>": 261537,
|
| 168 |
-
"<dom_formosan_paul_jen_kuei_li_internal_relationships>": 261538,
|
| 169 |
-
"<dom_formosan_paul_jen_kuei_li_origins_of_the_east_fo>": 261539,
|
| 170 |
-
"<dom_formosan_paul_jen_kuei_li_review_of_taiwan_abori>": 261540,
|
| 171 |
-
"<dom_formosan_paul_jen_kuei_li_rukai_structure>": 261541,
|
| 172 |
-
"<dom_formosan_paul_jen_kuei_li_some_plant_names_in_fo>": 261542,
|
| 173 |
-
"<dom_formosan_paul_jen_kuei_li_the_preglottalised_sto>": 261543,
|
| 174 |
-
"<dom_formosan_paul_li_atayalic_final_voiced_stops>": 261544,
|
| 175 |
-
"<dom_formosan_paul_li_case_marking_four_formosan_lang>": 261545,
|
| 176 |
-
"<dom_formosan_paul_li_position_atayal_austronesian>": 261546,
|
| 177 |
-
"<dom_formosan_pingdong_county_government_kai_na_sepuc>": 261547,
|
| 178 |
-
"<dom_formosan_puyuma_chen_raising_to_object>": 261548,
|
| 179 |
-
"<dom_formosan_puyuma_katipol_kopfjagdriten>": 261549,
|
| 180 |
-
"<dom_formosan_puyuma_teng_pronominal_systems>": 261550,
|
| 181 |
-
"<dom_formosan_puyuma_teng_reference_grammar>": 261551,
|
| 182 |
-
"<dom_formosan_raleigh_ferrell_construction_markers_fo>": 261552,
|
| 183 |
-
"<dom_formosan_raleigh_ferrell_paiwan_phonology_and_pr>": 261553,
|
| 184 |
-
"<dom_formosan_raleigh_j_ferrell_intent_and_volition_i>": 261554,
|
| 185 |
-
"<dom_formosan_rik_bunun>": 261555,
|
| 186 |
-
"<dom_formosan_rik_de_busser_the_influence_of_christia>": 261556,
|
| 187 |
-
"<dom_formosan_robert_blust_a_note_on_covert_structure>": 261557,
|
| 188 |
-
"<dom_formosan_robert_blust_austronesian_homeland_ling>": 261558,
|
| 189 |
-
"<dom_formosan_robert_blust_some_remarks_linguistic_po>": 261559,
|
| 190 |
-
"<dom_formosan_robert_blust_thao_triplication>": 261560,
|
| 191 |
-
"<dom_formosan_robert_blust_the_austronesian_languages>": 261561,
|
| 192 |
-
"<dom_formosan_rukai_mantauran_stories>": 261562,
|
| 193 |
-
"<dom_formosan_rukai_texts>": 261563,
|
| 194 |
-
"<dom_formosan_rukai_zeitoun_saying>": 261564,
|
| 195 |
-
"<dom_formosan_sakizaya_affixes>": 261565,
|
| 196 |
-
"<dom_formosan_schetelig_mittheilungen_uber_die_sprach>": 261566,
|
| 197 |
-
"<dom_formosan_seals>": 261567,
|
| 198 |
-
"<dom_formosan_seediq_zhang_reference_grammar>": 261568,
|
| 199 |
-
"<dom_formosan_shigeru_tsuchida_and_isidore_dyen_proto>": 261569,
|
| 200 |
-
"<dom_formosan_shigeru_tsuchida_kanakanavu_texts>": 261570,
|
| 201 |
-
"<dom_formosan_shigeru_tsuchida_preliminary_reports_on>": 261571,
|
| 202 |
-
"<dom_formosan_shigeru_tsuchida_reconstruction_proto_t>": 261572,
|
| 203 |
-
"<dom_formosan_shih_chi_stella_yeh_stress_and_quantity>": 261573,
|
| 204 |
-
"<dom_formosan_shih_rukai_adverbial>": 261574,
|
| 205 |
-
"<dom_formosan_sihwei_chen_and_haowen_jiang_ways_of_ta>": 261575,
|
| 206 |
-
"<dom_formosan_sihwei_chen_lexical_aspect_atayal>": 261576,
|
| 207 |
-
"<dom_formosan_soren_egerod_statement_atayal_phonology>": 261577,
|
| 208 |
-
"<dom_formosan_soren_egerod_verb_inflection_atayal>": 261578,
|
| 209 |
-
"<dom_formosan_stacy_teng_malcom_ross_is_puyuma_primar>": 261579,
|
| 210 |
-
"<dom_formosan_stacy_wan_tin_huang_functions_yami_verb>": 261580,
|
| 211 |
-
"<dom_formosan_sung_kuo_descriptive_comparative_constr>": 261581,
|
| 212 |
-
"<dom_formosan_taoshan_elementary_school_atelier_hui_k>": 261582,
|
| 213 |
-
"<dom_formosan_teresa_m_chen_verbal_construction_and_v>": 261583,
|
| 214 |
-
"<dom_formosan_ting_chi_wei_parallelism_in_amis_sluici>": 261584,
|
| 215 |
-
"<dom_formosan_tingchun_chen_successive_cyclic_case_as>": 261585,
|
| 216 |
-
"<dom_formosan_truku_lowking_demonstratives>": 261586,
|
| 217 |
-
"<dom_formosan_tsai_hsui_liu_complementation_three_lan>": 261587,
|
| 218 |
-
"<dom_formosan_tsai_wei_tien_dylan_conjunctive_reducti>": 261588,
|
| 219 |
-
"<dom_formosan_tsou_descriptive_study>": 261589,
|
| 220 |
-
"<dom_formosan_tsukida_naomi_verb_classification_amis>": 261590,
|
| 221 |
-
"<dom_formosan_tu_wen_chiu_a_synchronic_classification>": 261591,
|
| 222 |
-
"<dom_formosan_tung_tsuchida_ting_li_pan_saaroa_texts>": 261592,
|
| 223 |
-
"<dom_formosan_victoria_rau_yi_hsin_wu_and_meng_chien>": 261593,
|
| 224 |
-
"<dom_formosan_wei_huilin_liu_social_structure_yami>": 261594,
|
| 225 |
-
"<dom_formosan_wei_matri_clan_lineage_system_ami>": 261595,
|
| 226 |
-
"<dom_formosan_wei_tien_tsai_subjecthood_temporal_adju>": 261596,
|
| 227 |
-
"<dom_formosan_wiedfelt_formosan_aborigines_atayal>": 261597,
|
| 228 |
-
"<dom_formosan_wilang_yutas_videos>": 261598,
|
| 229 |
-
"<dom_formosan_wu_chunming_adverbials_in_paiwan>": 261599,
|
| 230 |
-
"<dom_formosan_xie_fuhui_introduction_kavalan_grammar>": 261600,
|
| 231 |
-
"<dom_formosan_yedda_palemeq_blog>": 261601,
|
| 232 |
-
"<dom_formosan_yeddas_blog>": 261602,
|
| 233 |
-
"<dom_formosan_yeh_meili_introduction_saisiyat_grammar>": 261603,
|
| 234 |
-
"<dom_formosan_yi_ming_chou_object_control_saisiyat>": 261604,
|
| 235 |
-
"<dom_formosan_yi_ting_chen_a_minimalist_approach_to_a>": 261605,
|
| 236 |
-
"<dom_formosan_yi_ting_chen_amis_left_periphery>": 261606,
|
| 237 |
-
"<dom_formosan_yi_ting_chen_language_use_code_mixing_a>": 261607,
|
| 238 |
-
"<dom_formosan_yi_yang_cheng_kanakanavu_word_level_pro>": 261608,
|
| 239 |
-
"<dom_formosan_yi_yang_cheng_tense_aspect_agent_markin>": 261609,
|
| 240 |
-
"<dom_formosan_yoshiro_nihira_bunun_vocabulary>": 261610,
|
| 241 |
-
"<dom_formosan_yuehchien_chien_the_lexical_system_of_y>": 261611,
|
| 242 |
-
"<dom_formosan_yukihiro_yamada_ying_chu_liao_phonology>": 261612,
|
| 243 |
-
"<dom_formosan_zeng_shifen_reduplication_affixation_pa>": 261613,
|
| 244 |
-
"<dom_formosan_zhan_sujuan_taiwan_indigenous_peoples_h>": 261614,
|
| 245 |
-
"<dom_formosan_zhang_xiujuan_introduction_paiwan_gramm>": 261615,
|
| 246 |
-
"<dom_formosan_zhang_yongli_pan_jiarong_introduction_t>": 261616,
|
| 247 |
-
"<dom_formosan_zhao_shanhe_li_taiyuan_zhu_qingyi_abori>": 261617,
|
| 248 |
-
"<dom_formosan_zheng_acl_2024>": 261618,
|
| 249 |
-
"<dom_formosan_zheng_data>": 261619,
|
| 250 |
-
"<dom_formosan_zheng_yumei_zhu_qingyi_bo_hongming_abor>": 261620,
|
| 251 |
-
"<dom_learning_vocab>": 261621,
|
| 252 |
-
"<dom_nine_level>": 261622,
|
| 253 |
-
"<dom_ntu>": 261623,
|
| 254 |
-
"<dom_picture_book>": 261624,
|
| 255 |
-
"<dom_picture_story>": 261625,
|
| 256 |
-
"<dom_presidential_apology>": 261626,
|
| 257 |
-
"<dom_reading_writing>": 261627,
|
| 258 |
-
"<dom_unknown>": 261628,
|
| 259 |
-
"<dom_youtube>": 261629,
|
| 260 |
-
"<src_ami>": 261630,
|
| 261 |
-
"<src_bnn>": 261631,
|
| 262 |
-
"<src_ckv>": 261632,
|
| 263 |
-
"<src_dru>": 261633,
|
| 264 |
-
"<src_eng>": 261634,
|
| 265 |
-
"<src_pwn>": 261635,
|
| 266 |
-
"<src_pyu>": 261636,
|
| 267 |
-
"<src_ssf>": 261637,
|
| 268 |
-
"<src_sxr>": 261638,
|
| 269 |
-
"<src_szy>": 261639,
|
| 270 |
-
"<src_tao>": 261640,
|
| 271 |
-
"<src_tay>": 261641,
|
| 272 |
-
"<src_trv>": 261642,
|
| 273 |
-
"<src_tsu>": 261643,
|
| 274 |
-
"<src_xnb>": 261644,
|
| 275 |
-
"<src_xsy>": 261645,
|
| 276 |
-
"<src_zh>": 261646,
|
| 277 |
-
"<to_ami>": 261647,
|
| 278 |
-
"<to_bnn>": 261648,
|
| 279 |
-
"<to_ckv>": 261649,
|
| 280 |
-
"<to_dru>": 261650,
|
| 281 |
-
"<to_eng>": 261651,
|
| 282 |
-
"<to_pwn>": 261652,
|
| 283 |
-
"<to_pyu>": 261653,
|
| 284 |
-
"<to_ssf>": 261654,
|
| 285 |
-
"<to_sxr>": 261655,
|
| 286 |
-
"<to_szy>": 261656,
|
| 287 |
-
"<to_tao>": 261657,
|
| 288 |
-
"<to_tay>": 261658,
|
| 289 |
-
"<to_trv>": 261659,
|
| 290 |
-
"<to_tsu>": 261660,
|
| 291 |
-
"<to_xnb>": 261661,
|
| 292 |
-
"<to_xsy>": 261662,
|
| 293 |
-
"<to_zh>": 261663,
|
| 294 |
-
"ami_Latn": 261357,
|
| 295 |
-
"bnn_Latn": 261358,
|
| 296 |
-
"ckv_Latn": 261359,
|
| 297 |
-
"dru_Latn": 261360,
|
| 298 |
-
"pwn_Latn": 261361,
|
| 299 |
-
"pyu_Latn": 261362,
|
| 300 |
-
"ssf_Latn": 261363,
|
| 301 |
-
"sxr_Latn": 261364,
|
| 302 |
-
"szy_Latn": 261365,
|
| 303 |
-
"tao_Latn": 261366,
|
| 304 |
-
"tay_Latn": 261367,
|
| 305 |
-
"trv_Latn": 261368,
|
| 306 |
-
"tsu_Latn": 261369,
|
| 307 |
-
"xnb_Latn": 261370,
|
| 308 |
-
"xsy_Latn": 261371
|
| 309 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"<dialect_central>": 261440,
|
| 3 |
+
"<dialect_coastal>": 261441,
|
| 4 |
+
"<dialect_dawu>": 261442,
|
| 5 |
+
"<dialect_default>": 261443,
|
| 6 |
+
"<dialect_deluvalley>": 261444,
|
| 7 |
+
"<dialect_dona>": 261445,
|
| 8 |
+
"<dialect_duda>": 261446,
|
| 9 |
+
"<dialect_eastern>": 261447,
|
| 10 |
+
"<dialect_fourseasons>": 261448,
|
| 11 |
+
"<dialect_hengchun>": 261449,
|
| 12 |
+
"<dialect_jianhe>": 261450,
|
| 13 |
+
"<dialect_junqun>": 261451,
|
| 14 |
+
"<dialect_kanakanavu>": 261452,
|
| 15 |
+
"<dialect_kaqun>": 261453,
|
| 16 |
+
"<dialect_kavalan>": 261454,
|
| 17 |
+
"<dialect_luanqun>": 261455,
|
| 18 |
+
"<dialect_malan>": 261456,
|
| 19 |
+
"<dialect_maolin>": 261457,
|
| 20 |
+
"<dialect_nanwang>": 261458,
|
| 21 |
+
"<dialect_northern>": 261459,
|
| 22 |
+
"<dialect_saaroa>": 261460,
|
| 23 |
+
"<dialect_saisiyat>": 261461,
|
| 24 |
+
"<dialect_sakizaya>": 261462,
|
| 25 |
+
"<dialect_sekolik>": 261463,
|
| 26 |
+
"<dialect_southern>": 261464,
|
| 27 |
+
"<dialect_tanqun>": 261465,
|
| 28 |
+
"<dialect_tegudaya>": 261466,
|
| 29 |
+
"<dialect_thao>": 261467,
|
| 30 |
+
"<dialect_truku>": 261468,
|
| 31 |
+
"<dialect_tsou>": 261469,
|
| 32 |
+
"<dialect_unknown>": 261470,
|
| 33 |
+
"<dialect_wanda>": 261471,
|
| 34 |
+
"<dialect_wanshan>": 261472,
|
| 35 |
+
"<dialect_wenshui>": 261473,
|
| 36 |
+
"<dialect_wutai>": 261474,
|
| 37 |
+
"<dialect_xiqun>": 261475,
|
| 38 |
+
"<dialect_xiuguluan>": 261476,
|
| 39 |
+
"<dialect_yami>": 261477,
|
| 40 |
+
"<dialect_yilanzeaol>": 261478,
|
| 41 |
+
"<dialect_zeaol>": 261479,
|
| 42 |
+
"<dialect_zhiben>": 261480,
|
| 43 |
+
"<dialect_zhuoqun>": 261481,
|
| 44 |
+
"<dom_classroom>": 261482,
|
| 45 |
+
"<dom_culture>": 261483,
|
| 46 |
+
"<dom_dictionary>": 261484,
|
| 47 |
+
"<dom_education>": 261485,
|
| 48 |
+
"<dom_linguistic>": 261486,
|
| 49 |
+
"<dom_media>": 261487,
|
| 50 |
+
"<dom_narrative>": 261488,
|
| 51 |
+
"<dom_religious>": 261489,
|
| 52 |
+
"<dom_unknown>": 261490,
|
| 53 |
+
"<src_ami>": 261491,
|
| 54 |
+
"<src_bnn>": 261492,
|
| 55 |
+
"<src_ckv>": 261493,
|
| 56 |
+
"<src_dru>": 261494,
|
| 57 |
+
"<src_eng>": 261495,
|
| 58 |
+
"<src_pwn>": 261496,
|
| 59 |
+
"<src_pyu>": 261497,
|
| 60 |
+
"<src_ssf>": 261498,
|
| 61 |
+
"<src_sxr>": 261499,
|
| 62 |
+
"<src_szy>": 261500,
|
| 63 |
+
"<src_tao>": 261501,
|
| 64 |
+
"<src_tay>": 261502,
|
| 65 |
+
"<src_trv>": 261503,
|
| 66 |
+
"<src_tsu>": 261504,
|
| 67 |
+
"<src_xnb>": 261505,
|
| 68 |
+
"<src_xsy>": 261506,
|
| 69 |
+
"<src_zh>": 261507,
|
| 70 |
+
"<to_ami>": 261508,
|
| 71 |
+
"<to_bnn>": 261509,
|
| 72 |
+
"<to_ckv>": 261510,
|
| 73 |
+
"<to_dru>": 261511,
|
| 74 |
+
"<to_eng>": 261512,
|
| 75 |
+
"<to_pwn>": 261513,
|
| 76 |
+
"<to_pyu>": 261514,
|
| 77 |
+
"<to_ssf>": 261515,
|
| 78 |
+
"<to_sxr>": 261516,
|
| 79 |
+
"<to_szy>": 261517,
|
| 80 |
+
"<to_tao>": 261518,
|
| 81 |
+
"<to_tay>": 261519,
|
| 82 |
+
"<to_trv>": 261520,
|
| 83 |
+
"<to_tsu>": 261521,
|
| 84 |
+
"<to_xnb>": 261522,
|
| 85 |
+
"<to_xsy>": 261523,
|
| 86 |
+
"<to_zh>": 261524,
|
| 87 |
+
"ami_Latn": 261425,
|
| 88 |
+
"bnn_Latn": 261426,
|
| 89 |
+
"ckv_Latn": 261427,
|
| 90 |
+
"dru_Latn": 261428,
|
| 91 |
+
"pwn_Latn": 261429,
|
| 92 |
+
"pyu_Latn": 261430,
|
| 93 |
+
"ssf_Latn": 261431,
|
| 94 |
+
"sxr_Latn": 261432,
|
| 95 |
+
"szy_Latn": 261433,
|
| 96 |
+
"tao_Latn": 261434,
|
| 97 |
+
"tay_Latn": 261435,
|
| 98 |
+
"trv_Latn": 261436,
|
| 99 |
+
"tsu_Latn": 261437,
|
| 100 |
+
"xnb_Latn": 261438,
|
| 101 |
+
"xsy_Latn": 261439
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
}
|
config.json
CHANGED
|
@@ -30,5 +30,5 @@
|
|
| 30 |
"tokenizer_class": "NllbTokenizer",
|
| 31 |
"transformers_version": "4.56.1",
|
| 32 |
"use_cache": true,
|
| 33 |
-
"vocab_size":
|
| 34 |
}
|
|
|
|
| 30 |
"tokenizer_class": "NllbTokenizer",
|
| 31 |
"transformers_version": "4.56.1",
|
| 32 |
"use_cache": true,
|
| 33 |
+
"vocab_size": 261525
|
| 34 |
}
|
eval/metrics.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
experiment_metadata.json
CHANGED
|
@@ -1,271 +1,287 @@
|
|
| 1 |
{
|
| 2 |
"model_family": "nllb",
|
| 3 |
-
"recipe_id": "nllb200-spm8k-directional-
|
| 4 |
"mt_standardization": {
|
| 5 |
"id": "formosan-mt-standard-v3",
|
| 6 |
-
"sha256": "
|
| 7 |
"namespace": "formosan-mt"
|
| 8 |
},
|
| 9 |
-
"step":
|
| 10 |
"best_metric": "chrF2",
|
| 11 |
-
"best_value":
|
| 12 |
"direction": "zh2f",
|
| 13 |
-
"run_contract_sha256": "
|
| 14 |
"validation": {
|
| 15 |
-
"mean_token_loss": 3.
|
| 16 |
-
"ppl":
|
| 17 |
"by_language": {
|
| 18 |
-
"ami":
|
| 19 |
-
"bnn":
|
| 20 |
-
"ckv":
|
| 21 |
-
"dru": 4.
|
| 22 |
-
"pwn": 3.
|
| 23 |
-
"pyu":
|
| 24 |
-
"ssf":
|
| 25 |
-
"sxr":
|
| 26 |
-
"szy": 3.
|
| 27 |
-
"tao": 4.
|
| 28 |
-
"tay": 3.
|
| 29 |
-
"trv": 3.
|
| 30 |
-
"tsu":
|
| 31 |
-
"xnb":
|
| 32 |
-
"xsy":
|
| 33 |
},
|
| 34 |
"generation": {
|
| 35 |
"samples": 1920,
|
| 36 |
"bleu_tokenize": "13a",
|
| 37 |
"global": {
|
| 38 |
-
"BLEU":
|
| 39 |
-
"chrF2":
|
| 40 |
-
"TER": 83.
|
| 41 |
-
"exact_match_rate": 0.
|
| 42 |
-
"empty_output_rate": 0.
|
| 43 |
-
"character_length_ratio": 0.
|
| 44 |
"signatures": {
|
| 45 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 46 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 47 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 48 |
-
}
|
|
|
|
| 49 |
},
|
| 50 |
"by_language": {
|
| 51 |
"ami": {
|
| 52 |
"samples": 128,
|
| 53 |
-
"BLEU":
|
| 54 |
-
"chrF2":
|
| 55 |
-
"TER":
|
| 56 |
"exact_match_rate": 0.0,
|
| 57 |
"empty_output_rate": 0.0,
|
| 58 |
-
"character_length_ratio": 0.
|
| 59 |
"signatures": {
|
| 60 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 61 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 62 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 63 |
-
}
|
|
|
|
| 64 |
},
|
| 65 |
"bnn": {
|
| 66 |
"samples": 128,
|
| 67 |
-
"BLEU":
|
| 68 |
-
"chrF2":
|
| 69 |
-
"TER":
|
| 70 |
"exact_match_rate": 0.0,
|
| 71 |
"empty_output_rate": 0.0,
|
| 72 |
-
"character_length_ratio": 0.
|
| 73 |
"signatures": {
|
| 74 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 75 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 76 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 77 |
-
}
|
|
|
|
| 78 |
},
|
| 79 |
"ckv": {
|
| 80 |
"samples": 128,
|
| 81 |
-
"BLEU":
|
| 82 |
-
"chrF2":
|
| 83 |
-
"TER":
|
| 84 |
-
"exact_match_rate": 0.
|
| 85 |
"empty_output_rate": 0.0,
|
| 86 |
-
"character_length_ratio": 0.
|
| 87 |
"signatures": {
|
| 88 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 89 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 90 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 91 |
-
}
|
|
|
|
| 92 |
},
|
| 93 |
"dru": {
|
| 94 |
"samples": 128,
|
| 95 |
-
"BLEU":
|
| 96 |
-
"chrF2":
|
| 97 |
-
"TER":
|
| 98 |
"exact_match_rate": 0.0,
|
| 99 |
"empty_output_rate": 0.0,
|
| 100 |
-
"character_length_ratio":
|
| 101 |
"signatures": {
|
| 102 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 103 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 104 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 105 |
-
}
|
|
|
|
| 106 |
},
|
| 107 |
"pwn": {
|
| 108 |
"samples": 128,
|
| 109 |
-
"BLEU":
|
| 110 |
-
"chrF2":
|
| 111 |
-
"TER":
|
| 112 |
"exact_match_rate": 0.0,
|
| 113 |
"empty_output_rate": 0.0,
|
| 114 |
-
"character_length_ratio": 0.
|
| 115 |
"signatures": {
|
| 116 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 117 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 118 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 119 |
-
}
|
|
|
|
| 120 |
},
|
| 121 |
"pyu": {
|
| 122 |
"samples": 128,
|
| 123 |
-
"BLEU":
|
| 124 |
-
"chrF2":
|
| 125 |
-
"TER":
|
| 126 |
-
"exact_match_rate": 0.
|
| 127 |
"empty_output_rate": 0.0,
|
| 128 |
-
"character_length_ratio": 0.
|
| 129 |
"signatures": {
|
| 130 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 131 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 132 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 133 |
-
}
|
|
|
|
| 134 |
},
|
| 135 |
"ssf": {
|
| 136 |
"samples": 128,
|
| 137 |
-
"BLEU":
|
| 138 |
-
"chrF2":
|
| 139 |
-
"TER":
|
| 140 |
-
"exact_match_rate": 0.
|
| 141 |
"empty_output_rate": 0.0,
|
| 142 |
-
"character_length_ratio": 0.
|
| 143 |
"signatures": {
|
| 144 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 145 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 146 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 147 |
-
}
|
|
|
|
| 148 |
},
|
| 149 |
"sxr": {
|
| 150 |
"samples": 128,
|
| 151 |
-
"BLEU": 3.
|
| 152 |
-
"chrF2":
|
| 153 |
-
"TER":
|
| 154 |
"exact_match_rate": 0.0,
|
| 155 |
"empty_output_rate": 0.0,
|
| 156 |
-
"character_length_ratio": 0.
|
| 157 |
"signatures": {
|
| 158 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 159 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 160 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 161 |
-
}
|
|
|
|
| 162 |
},
|
| 163 |
"szy": {
|
| 164 |
"samples": 128,
|
| 165 |
-
"BLEU":
|
| 166 |
-
"chrF2":
|
| 167 |
-
"TER":
|
| 168 |
"exact_match_rate": 0.0234375,
|
| 169 |
"empty_output_rate": 0.0,
|
| 170 |
-
"character_length_ratio":
|
| 171 |
"signatures": {
|
| 172 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 173 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 174 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 175 |
-
}
|
|
|
|
| 176 |
},
|
| 177 |
"tao": {
|
| 178 |
"samples": 128,
|
| 179 |
-
"BLEU":
|
| 180 |
-
"chrF2":
|
| 181 |
-
"TER":
|
| 182 |
"exact_match_rate": 0.0,
|
| 183 |
"empty_output_rate": 0.0,
|
| 184 |
-
"character_length_ratio": 0.
|
| 185 |
"signatures": {
|
| 186 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 187 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 188 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 189 |
-
}
|
|
|
|
| 190 |
},
|
| 191 |
"tay": {
|
| 192 |
"samples": 128,
|
| 193 |
-
"BLEU":
|
| 194 |
-
"chrF2":
|
| 195 |
-
"TER":
|
| 196 |
"exact_match_rate": 0.0,
|
| 197 |
-
"empty_output_rate": 0.
|
| 198 |
-
"character_length_ratio": 1.
|
| 199 |
"signatures": {
|
| 200 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 201 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 202 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 203 |
-
}
|
|
|
|
| 204 |
},
|
| 205 |
"trv": {
|
| 206 |
"samples": 128,
|
| 207 |
-
"BLEU":
|
| 208 |
-
"chrF2": 32.
|
| 209 |
-
"TER":
|
| 210 |
-
"exact_match_rate": 0.
|
| 211 |
"empty_output_rate": 0.0,
|
| 212 |
-
"character_length_ratio": 0.
|
| 213 |
"signatures": {
|
| 214 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 215 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 216 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 217 |
-
}
|
|
|
|
| 218 |
},
|
| 219 |
"tsu": {
|
| 220 |
"samples": 128,
|
| 221 |
-
"BLEU":
|
| 222 |
-
"chrF2":
|
| 223 |
-
"TER":
|
| 224 |
"exact_match_rate": 0.0,
|
| 225 |
"empty_output_rate": 0.0,
|
| 226 |
-
"character_length_ratio": 0.
|
| 227 |
"signatures": {
|
| 228 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 229 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 230 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 231 |
-
}
|
|
|
|
| 232 |
},
|
| 233 |
"xnb": {
|
| 234 |
"samples": 128,
|
| 235 |
-
"BLEU":
|
| 236 |
-
"chrF2":
|
| 237 |
-
"TER":
|
| 238 |
-
"exact_match_rate": 0.
|
| 239 |
"empty_output_rate": 0.0,
|
| 240 |
-
"character_length_ratio": 0.
|
| 241 |
"signatures": {
|
| 242 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 243 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 244 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 245 |
-
}
|
|
|
|
| 246 |
},
|
| 247 |
"xsy": {
|
| 248 |
"samples": 128,
|
| 249 |
-
"BLEU":
|
| 250 |
-
"chrF2":
|
| 251 |
-
"TER":
|
| 252 |
"exact_match_rate": 0.0,
|
| 253 |
"empty_output_rate": 0.0,
|
| 254 |
-
"character_length_ratio": 0.
|
| 255 |
"signatures": {
|
| 256 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 257 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 258 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 259 |
-
}
|
|
|
|
| 260 |
}
|
| 261 |
}
|
| 262 |
},
|
| 263 |
-
"step":
|
| 264 |
"selection": {
|
| 265 |
"metric": "chrF2",
|
| 266 |
-
"value":
|
| 267 |
"improved": true,
|
| 268 |
-
"best_value_before_eval":
|
| 269 |
}
|
| 270 |
}
|
| 271 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"model_family": "nllb",
|
| 3 |
+
"recipe_id": "nllb200-spm8k-directional-v5",
|
| 4 |
"mt_standardization": {
|
| 5 |
"id": "formosan-mt-standard-v3",
|
| 6 |
+
"sha256": "3c93c1abecfc68c72e3bb1d547fbe0bdebb14bb74e7a5d3c5c519bd18d34bf6f",
|
| 7 |
"namespace": "formosan-mt"
|
| 8 |
},
|
| 9 |
+
"step": 300000,
|
| 10 |
"best_metric": "chrF2",
|
| 11 |
+
"best_value": 35.82202484658809,
|
| 12 |
"direction": "zh2f",
|
| 13 |
+
"run_contract_sha256": "cc251cf00ec88f29e0d8407267f5f6d00ec19fe2fc5adfd7ab8f61c20c4ec897",
|
| 14 |
"validation": {
|
| 15 |
+
"mean_token_loss": 3.3005945952051094,
|
| 16 |
+
"ppl": 27.12876475945609,
|
| 17 |
"by_language": {
|
| 18 |
+
"ami": 2.9977749379532206,
|
| 19 |
+
"bnn": 3.690821646233282,
|
| 20 |
+
"ckv": 2.94499888262739,
|
| 21 |
+
"dru": 4.181627018271752,
|
| 22 |
+
"pwn": 3.4254762849185942,
|
| 23 |
+
"pyu": 3.304404493729452,
|
| 24 |
+
"ssf": 2.497812805786773,
|
| 25 |
+
"sxr": 3.7283250016987934,
|
| 26 |
+
"szy": 3.4226339202524496,
|
| 27 |
+
"tao": 4.027004377501526,
|
| 28 |
+
"tay": 3.8187424449188474,
|
| 29 |
+
"trv": 3.3320100487357895,
|
| 30 |
+
"tsu": 3.1443220605594697,
|
| 31 |
+
"xnb": 2.505188786058678,
|
| 32 |
+
"xsy": 2.4550011498098887
|
| 33 |
},
|
| 34 |
"generation": {
|
| 35 |
"samples": 1920,
|
| 36 |
"bleu_tokenize": "13a",
|
| 37 |
"global": {
|
| 38 |
+
"BLEU": 9.455191646228812,
|
| 39 |
+
"chrF2": 35.82202484658809,
|
| 40 |
+
"TER": 83.08488862131246,
|
| 41 |
+
"exact_match_rate": 0.0020833333333333333,
|
| 42 |
+
"empty_output_rate": 0.0,
|
| 43 |
+
"character_length_ratio": 0.9482003611684212,
|
| 44 |
"signatures": {
|
| 45 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 46 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 47 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 48 |
+
},
|
| 49 |
+
"source_copy_rate": 0.0
|
| 50 |
},
|
| 51 |
"by_language": {
|
| 52 |
"ami": {
|
| 53 |
"samples": 128,
|
| 54 |
+
"BLEU": 6.471396361006349,
|
| 55 |
+
"chrF2": 30.301236626781282,
|
| 56 |
+
"TER": 90.9090909090909,
|
| 57 |
"exact_match_rate": 0.0,
|
| 58 |
"empty_output_rate": 0.0,
|
| 59 |
+
"character_length_ratio": 0.8739165329052969,
|
| 60 |
"signatures": {
|
| 61 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 62 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 63 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 64 |
+
},
|
| 65 |
+
"source_copy_rate": 0.0
|
| 66 |
},
|
| 67 |
"bnn": {
|
| 68 |
"samples": 128,
|
| 69 |
+
"BLEU": 5.466768069013215,
|
| 70 |
+
"chrF2": 33.750602012686926,
|
| 71 |
+
"TER": 88.137321549966,
|
| 72 |
"exact_match_rate": 0.0,
|
| 73 |
"empty_output_rate": 0.0,
|
| 74 |
+
"character_length_ratio": 0.9296519493297257,
|
| 75 |
"signatures": {
|
| 76 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 77 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 78 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 79 |
+
},
|
| 80 |
+
"source_copy_rate": 0.0
|
| 81 |
},
|
| 82 |
"ckv": {
|
| 83 |
"samples": 128,
|
| 84 |
+
"BLEU": 15.527114881978997,
|
| 85 |
+
"chrF2": 41.66076326407682,
|
| 86 |
+
"TER": 74.10375369042598,
|
| 87 |
+
"exact_match_rate": 0.0,
|
| 88 |
"empty_output_rate": 0.0,
|
| 89 |
+
"character_length_ratio": 0.9610020876826723,
|
| 90 |
"signatures": {
|
| 91 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 92 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 93 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 94 |
+
},
|
| 95 |
+
"source_copy_rate": 0.0
|
| 96 |
},
|
| 97 |
"dru": {
|
| 98 |
"samples": 128,
|
| 99 |
+
"BLEU": 2.209520710659227,
|
| 100 |
+
"chrF2": 27.983762152508092,
|
| 101 |
+
"TER": 101.71972191730698,
|
| 102 |
"exact_match_rate": 0.0,
|
| 103 |
"empty_output_rate": 0.0,
|
| 104 |
+
"character_length_ratio": 1.0066437007874016,
|
| 105 |
"signatures": {
|
| 106 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 107 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 108 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 109 |
+
},
|
| 110 |
+
"source_copy_rate": 0.0
|
| 111 |
},
|
| 112 |
"pwn": {
|
| 113 |
"samples": 128,
|
| 114 |
+
"BLEU": 4.6023247601103465,
|
| 115 |
+
"chrF2": 33.737940135980466,
|
| 116 |
+
"TER": 89.06685236768801,
|
| 117 |
"exact_match_rate": 0.0,
|
| 118 |
"empty_output_rate": 0.0,
|
| 119 |
+
"character_length_ratio": 0.9638833451361617,
|
| 120 |
"signatures": {
|
| 121 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 122 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 123 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 124 |
+
},
|
| 125 |
+
"source_copy_rate": 0.0
|
| 126 |
},
|
| 127 |
"pyu": {
|
| 128 |
"samples": 128,
|
| 129 |
+
"BLEU": 9.007496571772867,
|
| 130 |
+
"chrF2": 35.476914949292,
|
| 131 |
+
"TER": 84.61979913916787,
|
| 132 |
+
"exact_match_rate": 0.0,
|
| 133 |
"empty_output_rate": 0.0,
|
| 134 |
+
"character_length_ratio": 0.9999442431000837,
|
| 135 |
"signatures": {
|
| 136 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 137 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 138 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 139 |
+
},
|
| 140 |
+
"source_copy_rate": 0.0
|
| 141 |
},
|
| 142 |
"ssf": {
|
| 143 |
"samples": 128,
|
| 144 |
+
"BLEU": 18.004249116567237,
|
| 145 |
+
"chrF2": 47.24722590802964,
|
| 146 |
+
"TER": 59.93303571428571,
|
| 147 |
+
"exact_match_rate": 0.0078125,
|
| 148 |
"empty_output_rate": 0.0,
|
| 149 |
+
"character_length_ratio": 0.8978708791208792,
|
| 150 |
"signatures": {
|
| 151 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 152 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 153 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 154 |
+
},
|
| 155 |
+
"source_copy_rate": 0.0
|
| 156 |
},
|
| 157 |
"sxr": {
|
| 158 |
"samples": 128,
|
| 159 |
+
"BLEU": 3.610289433997478,
|
| 160 |
+
"chrF2": 38.23203639485925,
|
| 161 |
+
"TER": 91.54639175257732,
|
| 162 |
"exact_match_rate": 0.0,
|
| 163 |
"empty_output_rate": 0.0,
|
| 164 |
+
"character_length_ratio": 0.957137966449846,
|
| 165 |
"signatures": {
|
| 166 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 167 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 168 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 169 |
+
},
|
| 170 |
+
"source_copy_rate": 0.0
|
| 171 |
},
|
| 172 |
"szy": {
|
| 173 |
"samples": 128,
|
| 174 |
+
"BLEU": 12.018448268563786,
|
| 175 |
+
"chrF2": 38.38498932105344,
|
| 176 |
+
"TER": 79.93158494868872,
|
| 177 |
"exact_match_rate": 0.0234375,
|
| 178 |
"empty_output_rate": 0.0,
|
| 179 |
+
"character_length_ratio": 1.0317768627146298,
|
| 180 |
"signatures": {
|
| 181 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 182 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 183 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 184 |
+
},
|
| 185 |
+
"source_copy_rate": 0.0
|
| 186 |
},
|
| 187 |
"tao": {
|
| 188 |
"samples": 128,
|
| 189 |
+
"BLEU": 9.388220471677311,
|
| 190 |
+
"chrF2": 32.52694722566377,
|
| 191 |
+
"TER": 73.00040600893219,
|
| 192 |
"exact_match_rate": 0.0,
|
| 193 |
"empty_output_rate": 0.0,
|
| 194 |
+
"character_length_ratio": 0.8613728129205922,
|
| 195 |
"signatures": {
|
| 196 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 197 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 198 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 199 |
+
},
|
| 200 |
+
"source_copy_rate": 0.0
|
| 201 |
},
|
| 202 |
"tay": {
|
| 203 |
"samples": 128,
|
| 204 |
+
"BLEU": 2.7297561079820287,
|
| 205 |
+
"chrF2": 21.796275475634115,
|
| 206 |
+
"TER": 112.19386439804073,
|
| 207 |
"exact_match_rate": 0.0,
|
| 208 |
+
"empty_output_rate": 0.0,
|
| 209 |
+
"character_length_ratio": 1.0032571521632918,
|
| 210 |
"signatures": {
|
| 211 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 212 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 213 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 214 |
+
},
|
| 215 |
+
"source_copy_rate": 0.0
|
| 216 |
},
|
| 217 |
"trv": {
|
| 218 |
"samples": 128,
|
| 219 |
+
"BLEU": 8.33659966162617,
|
| 220 |
+
"chrF2": 32.0446575794997,
|
| 221 |
+
"TER": 74.22053231939162,
|
| 222 |
+
"exact_match_rate": 0.0,
|
| 223 |
"empty_output_rate": 0.0,
|
| 224 |
+
"character_length_ratio": 0.8481531004512787,
|
| 225 |
"signatures": {
|
| 226 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 227 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 228 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 229 |
+
},
|
| 230 |
+
"source_copy_rate": 0.0
|
| 231 |
},
|
| 232 |
"tsu": {
|
| 233 |
"samples": 128,
|
| 234 |
+
"BLEU": 10.036666281229088,
|
| 235 |
+
"chrF2": 35.833768781078454,
|
| 236 |
+
"TER": 81.94852941176471,
|
| 237 |
"exact_match_rate": 0.0,
|
| 238 |
"empty_output_rate": 0.0,
|
| 239 |
+
"character_length_ratio": 0.9632515066882258,
|
| 240 |
"signatures": {
|
| 241 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 242 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 243 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 244 |
+
},
|
| 245 |
+
"source_copy_rate": 0.0
|
| 246 |
},
|
| 247 |
"xnb": {
|
| 248 |
"samples": 128,
|
| 249 |
+
"BLEU": 15.073988584777457,
|
| 250 |
+
"chrF2": 48.23658323417333,
|
| 251 |
+
"TER": 63.860369609856264,
|
| 252 |
+
"exact_match_rate": 0.0,
|
| 253 |
"empty_output_rate": 0.0,
|
| 254 |
+
"character_length_ratio": 0.9253807476499307,
|
| 255 |
"signatures": {
|
| 256 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 257 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 258 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 259 |
+
},
|
| 260 |
+
"source_copy_rate": 0.0
|
| 261 |
},
|
| 262 |
"xsy": {
|
| 263 |
"samples": 128,
|
| 264 |
+
"BLEU": 16.437505767524137,
|
| 265 |
+
"chrF2": 43.27827590109571,
|
| 266 |
+
"TER": 68.47792528558196,
|
| 267 |
"exact_match_rate": 0.0,
|
| 268 |
"empty_output_rate": 0.0,
|
| 269 |
+
"character_length_ratio": 0.9321233674658164,
|
| 270 |
"signatures": {
|
| 271 |
"BLEU": "nrefs:1|case:mixed|eff:yes|tok:13a|smooth:exp|version:2.5.1",
|
| 272 |
"chrF2": "nrefs:1|case:mixed|eff:yes|nc:6|nw:0|space:no|version:2.5.1",
|
| 273 |
"TER": "nrefs:1|case:mixed|tok:tercom|norm:yes|punct:yes|asian:no|version:2.5.1"
|
| 274 |
+
},
|
| 275 |
+
"source_copy_rate": 0.0
|
| 276 |
}
|
| 277 |
}
|
| 278 |
},
|
| 279 |
+
"step": 300000,
|
| 280 |
"selection": {
|
| 281 |
"metric": "chrF2",
|
| 282 |
+
"value": 35.82202484658809,
|
| 283 |
"improved": true,
|
| 284 |
+
"best_value_before_eval": 35.57269991348219
|
| 285 |
}
|
| 286 |
}
|
| 287 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f602a99072474db5b481d9abad0d9ae73985e7b2d26681a65cd292509cea53f
|
| 3 |
+
size 2482141536
|
mt_standardization.py
CHANGED
|
@@ -170,12 +170,16 @@ def include_optional_segments(run: _StandardizationRun) -> None:
|
|
| 170 |
total = 0
|
| 171 |
while True:
|
| 172 |
count = 0
|
|
|
|
| 173 |
|
| 174 |
-
def replacement(
|
|
|
|
|
|
|
|
|
|
| 175 |
nonlocal count
|
| 176 |
start, end = match.span()
|
| 177 |
-
previous =
|
| 178 |
-
following =
|
| 179 |
content = match.group(1)
|
| 180 |
previous_is_boundary = (
|
| 181 |
is_orthographic_character(previous)
|
|
@@ -194,7 +198,7 @@ def include_optional_segments(run: _StandardizationRun) -> None:
|
|
| 194 |
count += 1
|
| 195 |
return content
|
| 196 |
|
| 197 |
-
updated = OPTIONAL_CONTENT_RE.sub(replacement,
|
| 198 |
if not count:
|
| 199 |
break
|
| 200 |
total += count
|
|
|
|
| 170 |
total = 0
|
| 171 |
while True:
|
| 172 |
count = 0
|
| 173 |
+
current = working
|
| 174 |
|
| 175 |
+
def replacement(
|
| 176 |
+
match: re.Match[str],
|
| 177 |
+
current_text: str = current,
|
| 178 |
+
) -> str:
|
| 179 |
nonlocal count
|
| 180 |
start, end = match.span()
|
| 181 |
+
previous = current_text[start - 1] if start else ""
|
| 182 |
+
following = current_text[end] if end < len(current_text) else ""
|
| 183 |
content = match.group(1)
|
| 184 |
previous_is_boundary = (
|
| 185 |
is_orthographic_character(previous)
|
|
|
|
| 198 |
count += 1
|
| 199 |
return content
|
| 200 |
|
| 201 |
+
updated = OPTIONAL_CONTENT_RE.sub(replacement, current)
|
| 202 |
if not count:
|
| 203 |
break
|
| 204 |
total += count
|
mt_standardization_profile.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"schema_version": 1,
|
| 3 |
"profile_id": "formosan-mt-standard-v3",
|
| 4 |
-
"implementation_sha256": "
|
| 5 |
"unicode_normalization": "NFC",
|
| 6 |
"policy": {
|
| 7 |
"unwrap_letter_infixes": true,
|
|
|
|
| 1 |
{
|
| 2 |
"schema_version": 1,
|
| 3 |
"profile_id": "formosan-mt-standard-v3",
|
| 4 |
+
"implementation_sha256": "2062106642f27053616728f6f962f7d3ffea022bf737dbe98a8d4af1e6de3831",
|
| 5 |
"unicode_normalization": "NFC",
|
| 6 |
"policy": {
|
| 7 |
"unwrap_letter_infixes": true,
|
publication.json
CHANGED
|
@@ -2,29 +2,29 @@
|
|
| 2 |
"schema_version": 1,
|
| 3 |
"repo_id": "FormosanBank/nllb200-zh-formosan-spm8k",
|
| 4 |
"direction": "zh2f",
|
| 5 |
-
"run_stamp": "
|
| 6 |
"checkpoint": "best",
|
| 7 |
-
"checkpoint_step":
|
| 8 |
"corpus": {
|
| 9 |
"name": "private_no_bible",
|
| 10 |
"target_lang": "chinese",
|
| 11 |
-
"rows":
|
| 12 |
"splits": {
|
| 13 |
-
"test":
|
| 14 |
-
"train":
|
| 15 |
-
"validate":
|
| 16 |
},
|
| 17 |
-
"sha256": "
|
| 18 |
},
|
| 19 |
-
"profile_sha256": "
|
| 20 |
"base_model": {
|
| 21 |
"name": "facebook/nllb-200-distilled-600M",
|
| 22 |
"revision": "f8d333a098d19b4fd9a8b18f94170487ad3f821d"
|
| 23 |
},
|
| 24 |
"mt_standardization": {
|
| 25 |
"id": "formosan-mt-standard-v3",
|
| 26 |
-
"sha256": "
|
| 27 |
"namespace": "formosan-mt"
|
| 28 |
},
|
| 29 |
-
"run_contract_sha256": "
|
| 30 |
}
|
|
|
|
| 2 |
"schema_version": 1,
|
| 3 |
"repo_id": "FormosanBank/nllb200-zh-formosan-spm8k",
|
| 4 |
"direction": "zh2f",
|
| 5 |
+
"run_stamp": "20260816-193900",
|
| 6 |
"checkpoint": "best",
|
| 7 |
+
"checkpoint_step": 300000,
|
| 8 |
"corpus": {
|
| 9 |
"name": "private_no_bible",
|
| 10 |
"target_lang": "chinese",
|
| 11 |
+
"rows": 735848,
|
| 12 |
"splits": {
|
| 13 |
+
"test": 73591,
|
| 14 |
+
"train": 625460,
|
| 15 |
+
"validate": 36797
|
| 16 |
},
|
| 17 |
+
"sha256": "0024e7fcd35958455a2a060b20999e94b5e8a4364e7f54ba97ef27810746d932"
|
| 18 |
},
|
| 19 |
+
"profile_sha256": "4253b1b136fedebc589da942b80df71945212d1f4b92a8e98ec6fb160712f14b",
|
| 20 |
"base_model": {
|
| 21 |
"name": "facebook/nllb-200-distilled-600M",
|
| 22 |
"revision": "f8d333a098d19b4fd9a8b18f94170487ad3f821d"
|
| 23 |
},
|
| 24 |
"mt_standardization": {
|
| 25 |
"id": "formosan-mt-standard-v3",
|
| 26 |
+
"sha256": "3c93c1abecfc68c72e3bb1d547fbe0bdebb14bb74e7a5d3c5c519bd18d34bf6f",
|
| 27 |
"namespace": "formosan-mt"
|
| 28 |
},
|
| 29 |
+
"run_contract_sha256": "cc251cf00ec88f29e0d8407267f5f6d00ec19fe2fc5adfd7ab8f61c20c4ec897"
|
| 30 |
}
|
sentencepiece.bpe.model
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c622fc2eeba77b2253540f877e5c304f93e3f2a607d88bb777a0dccc8a5b36f2
|
| 3 |
+
size 4949444
|
special_tokens_map.json
CHANGED
|
@@ -259,222 +259,15 @@
|
|
| 259 |
"<dialect_zeaol>",
|
| 260 |
"<dialect_zhiben>",
|
| 261 |
"<dialect_zhuoqun>",
|
| 262 |
-
"<
|
| 263 |
"<dom_culture>",
|
| 264 |
"<dom_dictionary>",
|
| 265 |
-
"<
|
| 266 |
-
"<
|
| 267 |
-
"<
|
| 268 |
-
"<
|
| 269 |
-
"<
|
| 270 |
-
"<dom_formosan_amis_adversative_constructions>",
|
| 271 |
-
"<dom_formosan_amis_huang_english_phonology_grammar>",
|
| 272 |
-
"<dom_formosan_amis_kavalan_lin_interrogative_verbs>",
|
| 273 |
-
"<dom_formosan_amis_kuo_sung_comparative_constructions>",
|
| 274 |
-
"<dom_formosan_amis_myths_and_customs>",
|
| 275 |
-
"<dom_formosan_amis_pa_verbs>",
|
| 276 |
-
"<dom_formosan_amis_serial_verb_constructions>",
|
| 277 |
-
"<dom_formosan_amis_tung_chiou>",
|
| 278 |
-
"<dom_formosan_amy_lee_body_part_nomenclature_seediq>",
|
| 279 |
-
"<dom_formosan_anna_hsiou_chuan_chang_reference_gramma>",
|
| 280 |
-
"<dom_formosan_anton_quack_puyuma_pulingaw>",
|
| 281 |
-
"<dom_formosan_apay_tang_anger_happiness_truku_seediq>",
|
| 282 |
-
"<dom_formosan_asai_sedik_language>",
|
| 283 |
-
"<dom_formosan_atayal_you_nao_savak_raxayal>",
|
| 284 |
-
"<dom_formosan_bien_daniel_chiang_house_social_hierarc>",
|
| 285 |
-
"<dom_formosan_boyizhenu_narrative_oral_literature_tap>",
|
| 286 |
-
"<dom_formosan_bunun_debusser_dissertation>",
|
| 287 |
-
"<dom_formosan_bunun_topic_focus>",
|
| 288 |
-
"<dom_formosan_c_douglas_chretien_oceanic_material_in>",
|
| 289 |
-
"<dom_formosan_catherine_tseng_seediq_atayal_foods_the>",
|
| 290 |
-
"<dom_formosan_chang_kwo_tan_syncretic_objects_materia>",
|
| 291 |
-
"<dom_formosan_chaolin_li_motion_verb_grammaticalizati>",
|
| 292 |
-
"<dom_formosan_chen_fukuda_relabeling_ergative>",
|
| 293 |
-
"<dom_formosan_chen_fukuda_three_ways_steal>",
|
| 294 |
-
"<dom_formosan_cheng_sung_modality_kanakanavu>",
|
| 295 |
-
"<dom_formosan_chi_lu_chen_and_micheal_d_coe_an_invest>",
|
| 296 |
-
"<dom_formosan_chuming_wu_linking_constructions_mayrin>",
|
| 297 |
-
"<dom_formosan_chun_mei_chen_comparative_phonology_pai>",
|
| 298 |
-
"<dom_formosan_chunming_wu_two_types_of_noun_incorpora>",
|
| 299 |
-
"<dom_formosan_cip_atayal_grammar_overview>",
|
| 300 |
-
"<dom_formosan_claire_mcgill_a_brief_tayal_vocabulary>",
|
| 301 |
-
"<dom_formosan_david_blundell_ed_austronesian_taiwan>",
|
| 302 |
-
"<dom_formosan_dean_johnson_year_clouds_smangus>",
|
| 303 |
-
"<dom_formosan_der_hwa_victoria_rau_grammar_atayal>",
|
| 304 |
-
"<dom_formosan_der_hwa_victoria_rau_lexical_similarity>",
|
| 305 |
-
"<dom_formosan_dong_manv_yami_ode_to_taro>",
|
| 306 |
-
"<dom_formosan_dong_yi_lin_universal_quantifier_kavala>",
|
| 307 |
-
"<dom_formosan_dong_yijia_tjuwabar_paiwan_ritual_langu>",
|
| 308 |
-
"<dom_formosan_dorinda_tsai_hsiu_liu_neutral_imperfect>",
|
| 309 |
-
"<dom_formosan_ed_torjesen_amis_taiwan_word_list>",
|
| 310 |
-
"<dom_formosan_egerod_origin_headhunting_atayal_text_v>",
|
| 311 |
-
"<dom_formosan_egerod_soren_word_order_word_classes_at>",
|
| 312 |
-
"<dom_formosan_elizabeth_zeitoun_chen_huei_wu_overview>",
|
| 313 |
-
"<dom_formosan_elizabeth_zeitoun_lillian_huang_anna_ch>",
|
| 314 |
-
"<dom_formosan_elizabeth_zeitoun_lillian_huang_marie_y>",
|
| 315 |
-
"<dom_formosan_elizabeth_zeitoun_pronominal_system_man>",
|
| 316 |
-
"<dom_formosan_elizabeth_zeitoun_squib_dynamic_vs_stat>",
|
| 317 |
-
"<dom_formosan_epark>",
|
| 318 |
-
"<dom_formosan_ferrell_taiwan_aboriginal_groups_proble>",
|
| 319 |
-
"<dom_formosan_george_leroy_shelley_vudai_rukai>",
|
| 320 |
-
"<dom_formosan_gitbook_translations>",
|
| 321 |
-
"<dom_formosan_glosbe>",
|
| 322 |
-
"<dom_formosan_gujing_lin_tsou_serial_verb_constructio>",
|
| 323 |
-
"<dom_formosan_henry_chang_nominal_aspect_tsou>",
|
| 324 |
-
"<dom_formosan_henry_chang_tsou_causative_applicative>",
|
| 325 |
-
"<dom_formosan_henry_y_chang_formosan_speech_act_mood>",
|
| 326 |
-
"<dom_formosan_ho_dan_phonological_system_butonglu_pai>",
|
| 327 |
-
"<dom_formosan_holmer_seediq>",
|
| 328 |
-
"<dom_formosan_hsiu_chuan_liao_transitivity_ergativity>",
|
| 329 |
-
"<dom_formosan_huang_dongqiu_atayal_bunun_amis_languag>",
|
| 330 |
-
"<dom_formosan_huang_grammaticalization_squliq_atayal>",
|
| 331 |
-
"<dom_formosan_huang_hui_chuan_glide_formation_takitud>",
|
| 332 |
-
"<dom_formosan_huang_mei_chin_atayal_reference_grammar>",
|
| 333 |
-
"<dom_formosan_hui_chuan_j_huang_syllable_types_in_bun>",
|
| 334 |
-
"<dom_formosan_hui_shan_lin_squliq_atayal_reduplicatio>",
|
| 335 |
-
"<dom_formosan_huteson_rukai_survey>",
|
| 336 |
-
"<dom_formosan_ian_maddieson_and_richard_wright_the_vo>",
|
| 337 |
-
"<dom_formosan_ilrdf_42_language_practice_word_lists>",
|
| 338 |
-
"<dom_formosan_ilrdf_tousvusvutu_kita>",
|
| 339 |
-
"<dom_formosan_indigenous_education_resource_center_ke>",
|
| 340 |
-
"<dom_formosan_indigenous_language_literary_awards>",
|
| 341 |
-
"<dom_formosan_isabelle_bril_roots_and_stems_lexical_a>",
|
| 342 |
-
"<dom_formosan_jian_iwan_guo_qingliu_life_history>",
|
| 343 |
-
"<dom_formosan_jian_shilang_introduction_thao_grammar>",
|
| 344 |
-
"<dom_formosan_john_tu_er_wei_notes_on_the_religious_b>",
|
| 345 |
-
"<dom_formosan_john_u_wolff_the_proto_austronesian_pho>",
|
| 346 |
-
"<dom_formosan_jonathan_kuo_amis_manner_result_verbs>",
|
| 347 |
-
"<dom_formosan_josiane_cauquelin_aborigines_taiwan_puy>",
|
| 348 |
-
"<dom_formosan_joy_wu_clausal_modifiers_in_amis>",
|
| 349 |
-
"<dom_formosan_joy_wu_verb_classification_case_marking>",
|
| 350 |
-
"<dom_formosan_kanakanavu_texts>",
|
| 351 |
-
"<dom_formosan_kavalan_zhang_reference_grammar>",
|
| 352 |
-
"<dom_formosan_kumu_tapas_tribal_memory_oral_history_w>",
|
| 353 |
-
"<dom_formosan_kuo_j_c_argument_alternation_and_argume>",
|
| 354 |
-
"<dom_formosan_lei_shih_family_system_paiwan_at_su_pai>",
|
| 355 |
-
"<dom_formosan_li_chen_yeh_developing_a_hla_alua_learn>",
|
| 356 |
-
"<dom_formosan_li_may_sung_budai_rukai_exclamatives>",
|
| 357 |
-
"<dom_formosan_li_may_sung_clausal_nominalization_buda>",
|
| 358 |
-
"<dom_formosan_lillian_huang_atayal_participants_cross>",
|
| 359 |
-
"<dom_formosan_lillian_huang_ergativity_atayal>",
|
| 360 |
-
"<dom_formosan_liu_manyi_kaskun_ata_matas_i_ki_quaz>",
|
| 361 |
-
"<dom_formosan_malcom_d_ross_the_history_and_transitiv>",
|
| 362 |
-
"<dom_formosan_malcom_ross_proto_austronesian_verbal_m>",
|
| 363 |
-
"<dom_formosan_man_ni_chu_the_measurement_of_final_i_v>",
|
| 364 |
-
"<dom_formosan_matsuzawa_kazuko_the_social_and_ritual>",
|
| 365 |
-
"<dom_formosan_maya_yeh_blaq_uv_construction_atayal>",
|
| 366 |
-
"<dom_formosan_mayumi_oiwa_adverbial_verb_construction>",
|
| 367 |
-
"<dom_formosan_mayumi_oiwa_bungard_morphology_and_synt>",
|
| 368 |
-
"<dom_formosan_mayumi_oiwa_possessor_raising_truku_see>",
|
| 369 |
-
"<dom_formosan_mei_chin_huang_verb_classification_in_m>",
|
| 370 |
-
"<dom_formosan_melissa_shih_hui_lin_sakizaya_or_amis_a>",
|
| 371 |
-
"<dom_formosan_nanang_tadaw_naci_mowna_pgagu>",
|
| 372 |
-
"<dom_formosan_naomi_tsukida_correlative_clauses_seedi>",
|
| 373 |
-
"<dom_formosan_naomi_tsukida_ditransitive_causative_se>",
|
| 374 |
-
"<dom_formosan_nowbucyang_truku_thesis>",
|
| 375 |
-
"<dom_formosan_ochiai_izumi_2016_comparative_linguisti>",
|
| 376 |
-
"<dom_formosan_ochiai_izumi_bu_hwan_vocabulary_recorde>",
|
| 377 |
-
"<dom_formosan_ochiai_izumi_numerals_paran_seediq_rela>",
|
| 378 |
-
"<dom_formosan_ochiai_izumi_on_a_seediq_glossary_recor>",
|
| 379 |
-
"<dom_formosan_old_texts>",
|
| 380 |
-
"<dom_formosan_paiwan_ho_five_dialects>",
|
| 381 |
-
"<dom_formosan_paiwanstories>",
|
| 382 |
-
"<dom_formosan_pang_hsin_ting_reconstruction_proto_puy>",
|
| 383 |
-
"<dom_formosan_patricia_stanley_morphophonemics_of_ver>",
|
| 384 |
-
"<dom_formosan_paul_jen_kuei_li_comparative_bunun_dial>",
|
| 385 |
-
"<dom_formosan_paul_jen_kuei_li_conjunction_thao>",
|
| 386 |
-
"<dom_formosan_paul_jen_kuei_li_internal_relationships>",
|
| 387 |
-
"<dom_formosan_paul_jen_kuei_li_origins_of_the_east_fo>",
|
| 388 |
-
"<dom_formosan_paul_jen_kuei_li_review_of_taiwan_abori>",
|
| 389 |
-
"<dom_formosan_paul_jen_kuei_li_rukai_structure>",
|
| 390 |
-
"<dom_formosan_paul_jen_kuei_li_some_plant_names_in_fo>",
|
| 391 |
-
"<dom_formosan_paul_jen_kuei_li_the_preglottalised_sto>",
|
| 392 |
-
"<dom_formosan_paul_li_atayalic_final_voiced_stops>",
|
| 393 |
-
"<dom_formosan_paul_li_case_marking_four_formosan_lang>",
|
| 394 |
-
"<dom_formosan_paul_li_position_atayal_austronesian>",
|
| 395 |
-
"<dom_formosan_pingdong_county_government_kai_na_sepuc>",
|
| 396 |
-
"<dom_formosan_puyuma_chen_raising_to_object>",
|
| 397 |
-
"<dom_formosan_puyuma_katipol_kopfjagdriten>",
|
| 398 |
-
"<dom_formosan_puyuma_teng_pronominal_systems>",
|
| 399 |
-
"<dom_formosan_puyuma_teng_reference_grammar>",
|
| 400 |
-
"<dom_formosan_raleigh_ferrell_construction_markers_fo>",
|
| 401 |
-
"<dom_formosan_raleigh_ferrell_paiwan_phonology_and_pr>",
|
| 402 |
-
"<dom_formosan_raleigh_j_ferrell_intent_and_volition_i>",
|
| 403 |
-
"<dom_formosan_rik_bunun>",
|
| 404 |
-
"<dom_formosan_rik_de_busser_the_influence_of_christia>",
|
| 405 |
-
"<dom_formosan_robert_blust_a_note_on_covert_structure>",
|
| 406 |
-
"<dom_formosan_robert_blust_austronesian_homeland_ling>",
|
| 407 |
-
"<dom_formosan_robert_blust_some_remarks_linguistic_po>",
|
| 408 |
-
"<dom_formosan_robert_blust_thao_triplication>",
|
| 409 |
-
"<dom_formosan_robert_blust_the_austronesian_languages>",
|
| 410 |
-
"<dom_formosan_rukai_mantauran_stories>",
|
| 411 |
-
"<dom_formosan_rukai_texts>",
|
| 412 |
-
"<dom_formosan_rukai_zeitoun_saying>",
|
| 413 |
-
"<dom_formosan_sakizaya_affixes>",
|
| 414 |
-
"<dom_formosan_schetelig_mittheilungen_uber_die_sprach>",
|
| 415 |
-
"<dom_formosan_seals>",
|
| 416 |
-
"<dom_formosan_seediq_zhang_reference_grammar>",
|
| 417 |
-
"<dom_formosan_shigeru_tsuchida_and_isidore_dyen_proto>",
|
| 418 |
-
"<dom_formosan_shigeru_tsuchida_kanakanavu_texts>",
|
| 419 |
-
"<dom_formosan_shigeru_tsuchida_preliminary_reports_on>",
|
| 420 |
-
"<dom_formosan_shigeru_tsuchida_reconstruction_proto_t>",
|
| 421 |
-
"<dom_formosan_shih_chi_stella_yeh_stress_and_quantity>",
|
| 422 |
-
"<dom_formosan_shih_rukai_adverbial>",
|
| 423 |
-
"<dom_formosan_sihwei_chen_and_haowen_jiang_ways_of_ta>",
|
| 424 |
-
"<dom_formosan_sihwei_chen_lexical_aspect_atayal>",
|
| 425 |
-
"<dom_formosan_soren_egerod_statement_atayal_phonology>",
|
| 426 |
-
"<dom_formosan_soren_egerod_verb_inflection_atayal>",
|
| 427 |
-
"<dom_formosan_stacy_teng_malcom_ross_is_puyuma_primar>",
|
| 428 |
-
"<dom_formosan_stacy_wan_tin_huang_functions_yami_verb>",
|
| 429 |
-
"<dom_formosan_sung_kuo_descriptive_comparative_constr>",
|
| 430 |
-
"<dom_formosan_taoshan_elementary_school_atelier_hui_k>",
|
| 431 |
-
"<dom_formosan_teresa_m_chen_verbal_construction_and_v>",
|
| 432 |
-
"<dom_formosan_ting_chi_wei_parallelism_in_amis_sluici>",
|
| 433 |
-
"<dom_formosan_tingchun_chen_successive_cyclic_case_as>",
|
| 434 |
-
"<dom_formosan_truku_lowking_demonstratives>",
|
| 435 |
-
"<dom_formosan_tsai_hsui_liu_complementation_three_lan>",
|
| 436 |
-
"<dom_formosan_tsai_wei_tien_dylan_conjunctive_reducti>",
|
| 437 |
-
"<dom_formosan_tsou_descriptive_study>",
|
| 438 |
-
"<dom_formosan_tsukida_naomi_verb_classification_amis>",
|
| 439 |
-
"<dom_formosan_tu_wen_chiu_a_synchronic_classification>",
|
| 440 |
-
"<dom_formosan_tung_tsuchida_ting_li_pan_saaroa_texts>",
|
| 441 |
-
"<dom_formosan_victoria_rau_yi_hsin_wu_and_meng_chien>",
|
| 442 |
-
"<dom_formosan_wei_huilin_liu_social_structure_yami>",
|
| 443 |
-
"<dom_formosan_wei_matri_clan_lineage_system_ami>",
|
| 444 |
-
"<dom_formosan_wei_tien_tsai_subjecthood_temporal_adju>",
|
| 445 |
-
"<dom_formosan_wiedfelt_formosan_aborigines_atayal>",
|
| 446 |
-
"<dom_formosan_wilang_yutas_videos>",
|
| 447 |
-
"<dom_formosan_wu_chunming_adverbials_in_paiwan>",
|
| 448 |
-
"<dom_formosan_xie_fuhui_introduction_kavalan_grammar>",
|
| 449 |
-
"<dom_formosan_yedda_palemeq_blog>",
|
| 450 |
-
"<dom_formosan_yeddas_blog>",
|
| 451 |
-
"<dom_formosan_yeh_meili_introduction_saisiyat_grammar>",
|
| 452 |
-
"<dom_formosan_yi_ming_chou_object_control_saisiyat>",
|
| 453 |
-
"<dom_formosan_yi_ting_chen_a_minimalist_approach_to_a>",
|
| 454 |
-
"<dom_formosan_yi_ting_chen_amis_left_periphery>",
|
| 455 |
-
"<dom_formosan_yi_ting_chen_language_use_code_mixing_a>",
|
| 456 |
-
"<dom_formosan_yi_yang_cheng_kanakanavu_word_level_pro>",
|
| 457 |
-
"<dom_formosan_yi_yang_cheng_tense_aspect_agent_markin>",
|
| 458 |
-
"<dom_formosan_yoshiro_nihira_bunun_vocabulary>",
|
| 459 |
-
"<dom_formosan_yuehchien_chien_the_lexical_system_of_y>",
|
| 460 |
-
"<dom_formosan_yukihiro_yamada_ying_chu_liao_phonology>",
|
| 461 |
-
"<dom_formosan_zeng_shifen_reduplication_affixation_pa>",
|
| 462 |
-
"<dom_formosan_zhan_sujuan_taiwan_indigenous_peoples_h>",
|
| 463 |
-
"<dom_formosan_zhang_xiujuan_introduction_paiwan_gramm>",
|
| 464 |
-
"<dom_formosan_zhang_yongli_pan_jiarong_introduction_t>",
|
| 465 |
-
"<dom_formosan_zhao_shanhe_li_taiyuan_zhu_qingyi_abori>",
|
| 466 |
-
"<dom_formosan_zheng_acl_2024>",
|
| 467 |
-
"<dom_formosan_zheng_data>",
|
| 468 |
-
"<dom_formosan_zheng_yumei_zhu_qingyi_bo_hongming_abor>",
|
| 469 |
-
"<dom_learning_vocab>",
|
| 470 |
-
"<dom_nine_level>",
|
| 471 |
-
"<dom_ntu>",
|
| 472 |
-
"<dom_picture_book>",
|
| 473 |
-
"<dom_picture_story>",
|
| 474 |
-
"<dom_presidential_apology>",
|
| 475 |
-
"<dom_reading_writing>",
|
| 476 |
"<dom_unknown>",
|
| 477 |
-
"<dom_youtube>",
|
| 478 |
"<src_ami>",
|
| 479 |
"<src_bnn>",
|
| 480 |
"<src_ckv>",
|
|
|
|
| 259 |
"<dialect_zeaol>",
|
| 260 |
"<dialect_zhiben>",
|
| 261 |
"<dialect_zhuoqun>",
|
| 262 |
+
"<dom_classroom>",
|
| 263 |
"<dom_culture>",
|
| 264 |
"<dom_dictionary>",
|
| 265 |
+
"<dom_education>",
|
| 266 |
+
"<dom_linguistic>",
|
| 267 |
+
"<dom_media>",
|
| 268 |
+
"<dom_narrative>",
|
| 269 |
+
"<dom_religious>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 270 |
"<dom_unknown>",
|
|
|
|
| 271 |
"<src_ami>",
|
| 272 |
"<src_bnn>",
|
| 273 |
"<src_ckv>",
|
tokenizer_config.json
CHANGED
|
@@ -1656,7 +1656,7 @@
|
|
| 1656 |
"single_word": false,
|
| 1657 |
"special": true
|
| 1658 |
},
|
| 1659 |
-
"
|
| 1660 |
"content": "ami_Latn",
|
| 1661 |
"lstrip": false,
|
| 1662 |
"normalized": false,
|
|
@@ -1664,7 +1664,7 @@
|
|
| 1664 |
"single_word": false,
|
| 1665 |
"special": true
|
| 1666 |
},
|
| 1667 |
-
"
|
| 1668 |
"content": "bnn_Latn",
|
| 1669 |
"lstrip": false,
|
| 1670 |
"normalized": false,
|
|
@@ -1672,7 +1672,7 @@
|
|
| 1672 |
"single_word": false,
|
| 1673 |
"special": true
|
| 1674 |
},
|
| 1675 |
-
"
|
| 1676 |
"content": "ckv_Latn",
|
| 1677 |
"lstrip": false,
|
| 1678 |
"normalized": false,
|
|
@@ -1680,7 +1680,7 @@
|
|
| 1680 |
"single_word": false,
|
| 1681 |
"special": true
|
| 1682 |
},
|
| 1683 |
-
"
|
| 1684 |
"content": "dru_Latn",
|
| 1685 |
"lstrip": false,
|
| 1686 |
"normalized": false,
|
|
@@ -1688,7 +1688,7 @@
|
|
| 1688 |
"single_word": false,
|
| 1689 |
"special": true
|
| 1690 |
},
|
| 1691 |
-
"
|
| 1692 |
"content": "pwn_Latn",
|
| 1693 |
"lstrip": false,
|
| 1694 |
"normalized": false,
|
|
@@ -1696,7 +1696,7 @@
|
|
| 1696 |
"single_word": false,
|
| 1697 |
"special": true
|
| 1698 |
},
|
| 1699 |
-
"
|
| 1700 |
"content": "pyu_Latn",
|
| 1701 |
"lstrip": false,
|
| 1702 |
"normalized": false,
|
|
@@ -1704,7 +1704,7 @@
|
|
| 1704 |
"single_word": false,
|
| 1705 |
"special": true
|
| 1706 |
},
|
| 1707 |
-
"
|
| 1708 |
"content": "ssf_Latn",
|
| 1709 |
"lstrip": false,
|
| 1710 |
"normalized": false,
|
|
@@ -1712,7 +1712,7 @@
|
|
| 1712 |
"single_word": false,
|
| 1713 |
"special": true
|
| 1714 |
},
|
| 1715 |
-
"
|
| 1716 |
"content": "sxr_Latn",
|
| 1717 |
"lstrip": false,
|
| 1718 |
"normalized": false,
|
|
@@ -1720,7 +1720,7 @@
|
|
| 1720 |
"single_word": false,
|
| 1721 |
"special": true
|
| 1722 |
},
|
| 1723 |
-
"
|
| 1724 |
"content": "szy_Latn",
|
| 1725 |
"lstrip": false,
|
| 1726 |
"normalized": false,
|
|
@@ -1728,7 +1728,7 @@
|
|
| 1728 |
"single_word": false,
|
| 1729 |
"special": true
|
| 1730 |
},
|
| 1731 |
-
"
|
| 1732 |
"content": "tao_Latn",
|
| 1733 |
"lstrip": false,
|
| 1734 |
"normalized": false,
|
|
@@ -1736,7 +1736,7 @@
|
|
| 1736 |
"single_word": false,
|
| 1737 |
"special": true
|
| 1738 |
},
|
| 1739 |
-
"
|
| 1740 |
"content": "tay_Latn",
|
| 1741 |
"lstrip": false,
|
| 1742 |
"normalized": false,
|
|
@@ -1744,7 +1744,7 @@
|
|
| 1744 |
"single_word": false,
|
| 1745 |
"special": true
|
| 1746 |
},
|
| 1747 |
-
"
|
| 1748 |
"content": "trv_Latn",
|
| 1749 |
"lstrip": false,
|
| 1750 |
"normalized": false,
|
|
@@ -1752,7 +1752,7 @@
|
|
| 1752 |
"single_word": false,
|
| 1753 |
"special": true
|
| 1754 |
},
|
| 1755 |
-
"
|
| 1756 |
"content": "tsu_Latn",
|
| 1757 |
"lstrip": false,
|
| 1758 |
"normalized": false,
|
|
@@ -1760,7 +1760,7 @@
|
|
| 1760 |
"single_word": false,
|
| 1761 |
"special": true
|
| 1762 |
},
|
| 1763 |
-
"
|
| 1764 |
"content": "xnb_Latn",
|
| 1765 |
"lstrip": false,
|
| 1766 |
"normalized": false,
|
|
@@ -1768,7 +1768,7 @@
|
|
| 1768 |
"single_word": false,
|
| 1769 |
"special": true
|
| 1770 |
},
|
| 1771 |
-
"
|
| 1772 |
"content": "xsy_Latn",
|
| 1773 |
"lstrip": false,
|
| 1774 |
"normalized": false,
|
|
@@ -1776,7 +1776,7 @@
|
|
| 1776 |
"single_word": false,
|
| 1777 |
"special": true
|
| 1778 |
},
|
| 1779 |
-
"
|
| 1780 |
"content": "<dialect_central>",
|
| 1781 |
"lstrip": false,
|
| 1782 |
"normalized": false,
|
|
@@ -1784,7 +1784,7 @@
|
|
| 1784 |
"single_word": false,
|
| 1785 |
"special": true
|
| 1786 |
},
|
| 1787 |
-
"
|
| 1788 |
"content": "<dialect_coastal>",
|
| 1789 |
"lstrip": false,
|
| 1790 |
"normalized": false,
|
|
@@ -1792,7 +1792,7 @@
|
|
| 1792 |
"single_word": false,
|
| 1793 |
"special": true
|
| 1794 |
},
|
| 1795 |
-
"
|
| 1796 |
"content": "<dialect_dawu>",
|
| 1797 |
"lstrip": false,
|
| 1798 |
"normalized": false,
|
|
@@ -1800,7 +1800,7 @@
|
|
| 1800 |
"single_word": false,
|
| 1801 |
"special": true
|
| 1802 |
},
|
| 1803 |
-
"
|
| 1804 |
"content": "<dialect_default>",
|
| 1805 |
"lstrip": false,
|
| 1806 |
"normalized": false,
|
|
@@ -1808,7 +1808,7 @@
|
|
| 1808 |
"single_word": false,
|
| 1809 |
"special": true
|
| 1810 |
},
|
| 1811 |
-
"
|
| 1812 |
"content": "<dialect_deluvalley>",
|
| 1813 |
"lstrip": false,
|
| 1814 |
"normalized": false,
|
|
@@ -1816,7 +1816,7 @@
|
|
| 1816 |
"single_word": false,
|
| 1817 |
"special": true
|
| 1818 |
},
|
| 1819 |
-
"
|
| 1820 |
"content": "<dialect_dona>",
|
| 1821 |
"lstrip": false,
|
| 1822 |
"normalized": false,
|
|
@@ -1824,7 +1824,7 @@
|
|
| 1824 |
"single_word": false,
|
| 1825 |
"special": true
|
| 1826 |
},
|
| 1827 |
-
"
|
| 1828 |
"content": "<dialect_duda>",
|
| 1829 |
"lstrip": false,
|
| 1830 |
"normalized": false,
|
|
@@ -1832,7 +1832,7 @@
|
|
| 1832 |
"single_word": false,
|
| 1833 |
"special": true
|
| 1834 |
},
|
| 1835 |
-
"
|
| 1836 |
"content": "<dialect_eastern>",
|
| 1837 |
"lstrip": false,
|
| 1838 |
"normalized": false,
|
|
@@ -1840,7 +1840,7 @@
|
|
| 1840 |
"single_word": false,
|
| 1841 |
"special": true
|
| 1842 |
},
|
| 1843 |
-
"
|
| 1844 |
"content": "<dialect_fourseasons>",
|
| 1845 |
"lstrip": false,
|
| 1846 |
"normalized": false,
|
|
@@ -1848,7 +1848,7 @@
|
|
| 1848 |
"single_word": false,
|
| 1849 |
"special": true
|
| 1850 |
},
|
| 1851 |
-
"
|
| 1852 |
"content": "<dialect_hengchun>",
|
| 1853 |
"lstrip": false,
|
| 1854 |
"normalized": false,
|
|
@@ -1856,7 +1856,7 @@
|
|
| 1856 |
"single_word": false,
|
| 1857 |
"special": true
|
| 1858 |
},
|
| 1859 |
-
"
|
| 1860 |
"content": "<dialect_jianhe>",
|
| 1861 |
"lstrip": false,
|
| 1862 |
"normalized": false,
|
|
@@ -1864,7 +1864,7 @@
|
|
| 1864 |
"single_word": false,
|
| 1865 |
"special": true
|
| 1866 |
},
|
| 1867 |
-
"
|
| 1868 |
"content": "<dialect_junqun>",
|
| 1869 |
"lstrip": false,
|
| 1870 |
"normalized": false,
|
|
@@ -1872,7 +1872,7 @@
|
|
| 1872 |
"single_word": false,
|
| 1873 |
"special": true
|
| 1874 |
},
|
| 1875 |
-
"
|
| 1876 |
"content": "<dialect_kanakanavu>",
|
| 1877 |
"lstrip": false,
|
| 1878 |
"normalized": false,
|
|
@@ -1880,7 +1880,7 @@
|
|
| 1880 |
"single_word": false,
|
| 1881 |
"special": true
|
| 1882 |
},
|
| 1883 |
-
"
|
| 1884 |
"content": "<dialect_kaqun>",
|
| 1885 |
"lstrip": false,
|
| 1886 |
"normalized": false,
|
|
@@ -1888,7 +1888,7 @@
|
|
| 1888 |
"single_word": false,
|
| 1889 |
"special": true
|
| 1890 |
},
|
| 1891 |
-
"
|
| 1892 |
"content": "<dialect_kavalan>",
|
| 1893 |
"lstrip": false,
|
| 1894 |
"normalized": false,
|
|
@@ -1896,7 +1896,7 @@
|
|
| 1896 |
"single_word": false,
|
| 1897 |
"special": true
|
| 1898 |
},
|
| 1899 |
-
"
|
| 1900 |
"content": "<dialect_luanqun>",
|
| 1901 |
"lstrip": false,
|
| 1902 |
"normalized": false,
|
|
@@ -1904,7 +1904,7 @@
|
|
| 1904 |
"single_word": false,
|
| 1905 |
"special": true
|
| 1906 |
},
|
| 1907 |
-
"
|
| 1908 |
"content": "<dialect_malan>",
|
| 1909 |
"lstrip": false,
|
| 1910 |
"normalized": false,
|
|
@@ -1912,7 +1912,7 @@
|
|
| 1912 |
"single_word": false,
|
| 1913 |
"special": true
|
| 1914 |
},
|
| 1915 |
-
"
|
| 1916 |
"content": "<dialect_maolin>",
|
| 1917 |
"lstrip": false,
|
| 1918 |
"normalized": false,
|
|
@@ -1920,7 +1920,7 @@
|
|
| 1920 |
"single_word": false,
|
| 1921 |
"special": true
|
| 1922 |
},
|
| 1923 |
-
"
|
| 1924 |
"content": "<dialect_nanwang>",
|
| 1925 |
"lstrip": false,
|
| 1926 |
"normalized": false,
|
|
@@ -1928,7 +1928,7 @@
|
|
| 1928 |
"single_word": false,
|
| 1929 |
"special": true
|
| 1930 |
},
|
| 1931 |
-
"
|
| 1932 |
"content": "<dialect_northern>",
|
| 1933 |
"lstrip": false,
|
| 1934 |
"normalized": false,
|
|
@@ -1936,7 +1936,7 @@
|
|
| 1936 |
"single_word": false,
|
| 1937 |
"special": true
|
| 1938 |
},
|
| 1939 |
-
"
|
| 1940 |
"content": "<dialect_saaroa>",
|
| 1941 |
"lstrip": false,
|
| 1942 |
"normalized": false,
|
|
@@ -1944,7 +1944,7 @@
|
|
| 1944 |
"single_word": false,
|
| 1945 |
"special": true
|
| 1946 |
},
|
| 1947 |
-
"
|
| 1948 |
"content": "<dialect_saisiyat>",
|
| 1949 |
"lstrip": false,
|
| 1950 |
"normalized": false,
|
|
@@ -1952,7 +1952,7 @@
|
|
| 1952 |
"single_word": false,
|
| 1953 |
"special": true
|
| 1954 |
},
|
| 1955 |
-
"
|
| 1956 |
"content": "<dialect_sakizaya>",
|
| 1957 |
"lstrip": false,
|
| 1958 |
"normalized": false,
|
|
@@ -1960,7 +1960,7 @@
|
|
| 1960 |
"single_word": false,
|
| 1961 |
"special": true
|
| 1962 |
},
|
| 1963 |
-
"
|
| 1964 |
"content": "<dialect_sekolik>",
|
| 1965 |
"lstrip": false,
|
| 1966 |
"normalized": false,
|
|
@@ -1968,7 +1968,7 @@
|
|
| 1968 |
"single_word": false,
|
| 1969 |
"special": true
|
| 1970 |
},
|
| 1971 |
-
"
|
| 1972 |
"content": "<dialect_southern>",
|
| 1973 |
"lstrip": false,
|
| 1974 |
"normalized": false,
|
|
@@ -1976,7 +1976,7 @@
|
|
| 1976 |
"single_word": false,
|
| 1977 |
"special": true
|
| 1978 |
},
|
| 1979 |
-
"
|
| 1980 |
"content": "<dialect_tanqun>",
|
| 1981 |
"lstrip": false,
|
| 1982 |
"normalized": false,
|
|
@@ -1984,7 +1984,7 @@
|
|
| 1984 |
"single_word": false,
|
| 1985 |
"special": true
|
| 1986 |
},
|
| 1987 |
-
"
|
| 1988 |
"content": "<dialect_tegudaya>",
|
| 1989 |
"lstrip": false,
|
| 1990 |
"normalized": false,
|
|
@@ -1992,7 +1992,7 @@
|
|
| 1992 |
"single_word": false,
|
| 1993 |
"special": true
|
| 1994 |
},
|
| 1995 |
-
"
|
| 1996 |
"content": "<dialect_thao>",
|
| 1997 |
"lstrip": false,
|
| 1998 |
"normalized": false,
|
|
@@ -2000,7 +2000,7 @@
|
|
| 2000 |
"single_word": false,
|
| 2001 |
"special": true
|
| 2002 |
},
|
| 2003 |
-
"
|
| 2004 |
"content": "<dialect_truku>",
|
| 2005 |
"lstrip": false,
|
| 2006 |
"normalized": false,
|
|
@@ -2008,7 +2008,7 @@
|
|
| 2008 |
"single_word": false,
|
| 2009 |
"special": true
|
| 2010 |
},
|
| 2011 |
-
"
|
| 2012 |
"content": "<dialect_tsou>",
|
| 2013 |
"lstrip": false,
|
| 2014 |
"normalized": false,
|
|
@@ -2016,7 +2016,7 @@
|
|
| 2016 |
"single_word": false,
|
| 2017 |
"special": true
|
| 2018 |
},
|
| 2019 |
-
"
|
| 2020 |
"content": "<dialect_unknown>",
|
| 2021 |
"lstrip": false,
|
| 2022 |
"normalized": false,
|
|
@@ -2024,7 +2024,7 @@
|
|
| 2024 |
"single_word": false,
|
| 2025 |
"special": true
|
| 2026 |
},
|
| 2027 |
-
"
|
| 2028 |
"content": "<dialect_wanda>",
|
| 2029 |
"lstrip": false,
|
| 2030 |
"normalized": false,
|
|
@@ -2032,7 +2032,7 @@
|
|
| 2032 |
"single_word": false,
|
| 2033 |
"special": true
|
| 2034 |
},
|
| 2035 |
-
"
|
| 2036 |
"content": "<dialect_wanshan>",
|
| 2037 |
"lstrip": false,
|
| 2038 |
"normalized": false,
|
|
@@ -2040,7 +2040,7 @@
|
|
| 2040 |
"single_word": false,
|
| 2041 |
"special": true
|
| 2042 |
},
|
| 2043 |
-
"
|
| 2044 |
"content": "<dialect_wenshui>",
|
| 2045 |
"lstrip": false,
|
| 2046 |
"normalized": false,
|
|
@@ -2048,7 +2048,7 @@
|
|
| 2048 |
"single_word": false,
|
| 2049 |
"special": true
|
| 2050 |
},
|
| 2051 |
-
"
|
| 2052 |
"content": "<dialect_wutai>",
|
| 2053 |
"lstrip": false,
|
| 2054 |
"normalized": false,
|
|
@@ -2056,7 +2056,7 @@
|
|
| 2056 |
"single_word": false,
|
| 2057 |
"special": true
|
| 2058 |
},
|
| 2059 |
-
"
|
| 2060 |
"content": "<dialect_xiqun>",
|
| 2061 |
"lstrip": false,
|
| 2062 |
"normalized": false,
|
|
@@ -2064,7 +2064,7 @@
|
|
| 2064 |
"single_word": false,
|
| 2065 |
"special": true
|
| 2066 |
},
|
| 2067 |
-
"
|
| 2068 |
"content": "<dialect_xiuguluan>",
|
| 2069 |
"lstrip": false,
|
| 2070 |
"normalized": false,
|
|
@@ -2072,7 +2072,7 @@
|
|
| 2072 |
"single_word": false,
|
| 2073 |
"special": true
|
| 2074 |
},
|
| 2075 |
-
"
|
| 2076 |
"content": "<dialect_yami>",
|
| 2077 |
"lstrip": false,
|
| 2078 |
"normalized": false,
|
|
@@ -2080,7 +2080,7 @@
|
|
| 2080 |
"single_word": false,
|
| 2081 |
"special": true
|
| 2082 |
},
|
| 2083 |
-
"
|
| 2084 |
"content": "<dialect_yilanzeaol>",
|
| 2085 |
"lstrip": false,
|
| 2086 |
"normalized": false,
|
|
@@ -2088,7 +2088,7 @@
|
|
| 2088 |
"single_word": false,
|
| 2089 |
"special": true
|
| 2090 |
},
|
| 2091 |
-
"
|
| 2092 |
"content": "<dialect_zeaol>",
|
| 2093 |
"lstrip": false,
|
| 2094 |
"normalized": false,
|
|
@@ -2096,7 +2096,7 @@
|
|
| 2096 |
"single_word": false,
|
| 2097 |
"special": true
|
| 2098 |
},
|
| 2099 |
-
"
|
| 2100 |
"content": "<dialect_zhiben>",
|
| 2101 |
"lstrip": false,
|
| 2102 |
"normalized": false,
|
|
@@ -2104,7 +2104,7 @@
|
|
| 2104 |
"single_word": false,
|
| 2105 |
"special": true
|
| 2106 |
},
|
| 2107 |
-
"
|
| 2108 |
"content": "<dialect_zhuoqun>",
|
| 2109 |
"lstrip": false,
|
| 2110 |
"normalized": false,
|
|
@@ -2112,15 +2112,15 @@
|
|
| 2112 |
"single_word": false,
|
| 2113 |
"special": true
|
| 2114 |
},
|
| 2115 |
-
"
|
| 2116 |
-
"content": "<
|
| 2117 |
"lstrip": false,
|
| 2118 |
"normalized": false,
|
| 2119 |
"rstrip": false,
|
| 2120 |
"single_word": false,
|
| 2121 |
"special": true
|
| 2122 |
},
|
| 2123 |
-
"
|
| 2124 |
"content": "<dom_culture>",
|
| 2125 |
"lstrip": false,
|
| 2126 |
"normalized": false,
|
|
@@ -2128,7 +2128,7 @@
|
|
| 2128 |
"single_word": false,
|
| 2129 |
"special": true
|
| 2130 |
},
|
| 2131 |
-
"
|
| 2132 |
"content": "<dom_dictionary>",
|
| 2133 |
"lstrip": false,
|
| 2134 |
"normalized": false,
|
|
@@ -2136,1975 +2136,319 @@
|
|
| 2136 |
"single_word": false,
|
| 2137 |
"special": true
|
| 2138 |
},
|
| 2139 |
-
"
|
| 2140 |
-
"content": "<
|
| 2141 |
-
"lstrip": false,
|
| 2142 |
-
"normalized": false,
|
| 2143 |
-
"rstrip": false,
|
| 2144 |
-
"single_word": false,
|
| 2145 |
-
"special": true
|
| 2146 |
-
},
|
| 2147 |
-
"261418": {
|
| 2148 |
-
"content": "<dom_formosan_100_paiwan_texts>",
|
| 2149 |
-
"lstrip": false,
|
| 2150 |
-
"normalized": false,
|
| 2151 |
-
"rstrip": false,
|
| 2152 |
-
"single_word": false,
|
| 2153 |
-
"special": true
|
| 2154 |
-
},
|
| 2155 |
-
"261419": {
|
| 2156 |
-
"content": "<dom_formosan_academia_sinica_oral_legends>",
|
| 2157 |
-
"lstrip": false,
|
| 2158 |
-
"normalized": false,
|
| 2159 |
-
"rstrip": false,
|
| 2160 |
-
"single_word": false,
|
| 2161 |
-
"special": true
|
| 2162 |
-
},
|
| 2163 |
-
"261420": {
|
| 2164 |
-
"content": "<dom_formosan_adlay_kun_long_liu_syntactic_interactio>",
|
| 2165 |
-
"lstrip": false,
|
| 2166 |
-
"normalized": false,
|
| 2167 |
-
"rstrip": false,
|
| 2168 |
-
"single_word": false,
|
| 2169 |
-
"special": true
|
| 2170 |
-
},
|
| 2171 |
-
"261421": {
|
| 2172 |
-
"content": "<dom_formosan_adlay_liu_lfg_relativisation_jianshi_sq>",
|
| 2173 |
-
"lstrip": false,
|
| 2174 |
-
"normalized": false,
|
| 2175 |
-
"rstrip": false,
|
| 2176 |
-
"single_word": false,
|
| 2177 |
-
"special": true
|
| 2178 |
-
},
|
| 2179 |
-
"261422": {
|
| 2180 |
-
"content": "<dom_formosan_amis_adversative_constructions>",
|
| 2181 |
-
"lstrip": false,
|
| 2182 |
-
"normalized": false,
|
| 2183 |
-
"rstrip": false,
|
| 2184 |
-
"single_word": false,
|
| 2185 |
-
"special": true
|
| 2186 |
-
},
|
| 2187 |
-
"261423": {
|
| 2188 |
-
"content": "<dom_formosan_amis_huang_english_phonology_grammar>",
|
| 2189 |
-
"lstrip": false,
|
| 2190 |
-
"normalized": false,
|
| 2191 |
-
"rstrip": false,
|
| 2192 |
-
"single_word": false,
|
| 2193 |
-
"special": true
|
| 2194 |
-
},
|
| 2195 |
-
"261424": {
|
| 2196 |
-
"content": "<dom_formosan_amis_kavalan_lin_interrogative_verbs>",
|
| 2197 |
-
"lstrip": false,
|
| 2198 |
-
"normalized": false,
|
| 2199 |
-
"rstrip": false,
|
| 2200 |
-
"single_word": false,
|
| 2201 |
-
"special": true
|
| 2202 |
-
},
|
| 2203 |
-
"261425": {
|
| 2204 |
-
"content": "<dom_formosan_amis_kuo_sung_comparative_constructions>",
|
| 2205 |
-
"lstrip": false,
|
| 2206 |
-
"normalized": false,
|
| 2207 |
-
"rstrip": false,
|
| 2208 |
-
"single_word": false,
|
| 2209 |
-
"special": true
|
| 2210 |
-
},
|
| 2211 |
-
"261426": {
|
| 2212 |
-
"content": "<dom_formosan_amis_myths_and_customs>",
|
| 2213 |
-
"lstrip": false,
|
| 2214 |
-
"normalized": false,
|
| 2215 |
-
"rstrip": false,
|
| 2216 |
-
"single_word": false,
|
| 2217 |
-
"special": true
|
| 2218 |
-
},
|
| 2219 |
-
"261427": {
|
| 2220 |
-
"content": "<dom_formosan_amis_pa_verbs>",
|
| 2221 |
-
"lstrip": false,
|
| 2222 |
-
"normalized": false,
|
| 2223 |
-
"rstrip": false,
|
| 2224 |
-
"single_word": false,
|
| 2225 |
-
"special": true
|
| 2226 |
-
},
|
| 2227 |
-
"261428": {
|
| 2228 |
-
"content": "<dom_formosan_amis_serial_verb_constructions>",
|
| 2229 |
-
"lstrip": false,
|
| 2230 |
-
"normalized": false,
|
| 2231 |
-
"rstrip": false,
|
| 2232 |
-
"single_word": false,
|
| 2233 |
-
"special": true
|
| 2234 |
-
},
|
| 2235 |
-
"261429": {
|
| 2236 |
-
"content": "<dom_formosan_amis_tung_chiou>",
|
| 2237 |
-
"lstrip": false,
|
| 2238 |
-
"normalized": false,
|
| 2239 |
-
"rstrip": false,
|
| 2240 |
-
"single_word": false,
|
| 2241 |
-
"special": true
|
| 2242 |
-
},
|
| 2243 |
-
"261430": {
|
| 2244 |
-
"content": "<dom_formosan_amy_lee_body_part_nomenclature_seediq>",
|
| 2245 |
"lstrip": false,
|
| 2246 |
"normalized": false,
|
| 2247 |
"rstrip": false,
|
| 2248 |
"single_word": false,
|
| 2249 |
"special": true
|
| 2250 |
},
|
| 2251 |
-
"
|
| 2252 |
-
"content": "<
|
| 2253 |
"lstrip": false,
|
| 2254 |
"normalized": false,
|
| 2255 |
"rstrip": false,
|
| 2256 |
"single_word": false,
|
| 2257 |
"special": true
|
| 2258 |
},
|
| 2259 |
-
"
|
| 2260 |
-
"content": "<
|
| 2261 |
"lstrip": false,
|
| 2262 |
"normalized": false,
|
| 2263 |
"rstrip": false,
|
| 2264 |
"single_word": false,
|
| 2265 |
"special": true
|
| 2266 |
},
|
| 2267 |
-
"
|
| 2268 |
-
"content": "<
|
| 2269 |
"lstrip": false,
|
| 2270 |
"normalized": false,
|
| 2271 |
"rstrip": false,
|
| 2272 |
"single_word": false,
|
| 2273 |
"special": true
|
| 2274 |
},
|
| 2275 |
-
"
|
| 2276 |
-
"content": "<
|
| 2277 |
"lstrip": false,
|
| 2278 |
"normalized": false,
|
| 2279 |
"rstrip": false,
|
| 2280 |
"single_word": false,
|
| 2281 |
"special": true
|
| 2282 |
},
|
| 2283 |
-
"
|
| 2284 |
-
"content": "<
|
| 2285 |
"lstrip": false,
|
| 2286 |
"normalized": false,
|
| 2287 |
"rstrip": false,
|
| 2288 |
"single_word": false,
|
| 2289 |
"special": true
|
| 2290 |
},
|
| 2291 |
-
"
|
| 2292 |
-
"content": "<
|
| 2293 |
"lstrip": false,
|
| 2294 |
"normalized": false,
|
| 2295 |
"rstrip": false,
|
| 2296 |
"single_word": false,
|
| 2297 |
"special": true
|
| 2298 |
},
|
| 2299 |
-
"
|
| 2300 |
-
"content": "<
|
| 2301 |
"lstrip": false,
|
| 2302 |
"normalized": false,
|
| 2303 |
"rstrip": false,
|
| 2304 |
"single_word": false,
|
| 2305 |
"special": true
|
| 2306 |
},
|
| 2307 |
-
"
|
| 2308 |
-
"content": "<
|
| 2309 |
"lstrip": false,
|
| 2310 |
"normalized": false,
|
| 2311 |
"rstrip": false,
|
| 2312 |
"single_word": false,
|
| 2313 |
"special": true
|
| 2314 |
},
|
| 2315 |
-
"
|
| 2316 |
-
"content": "<
|
| 2317 |
"lstrip": false,
|
| 2318 |
"normalized": false,
|
| 2319 |
"rstrip": false,
|
| 2320 |
"single_word": false,
|
| 2321 |
"special": true
|
| 2322 |
},
|
| 2323 |
-
"
|
| 2324 |
-
"content": "<
|
| 2325 |
"lstrip": false,
|
| 2326 |
"normalized": false,
|
| 2327 |
"rstrip": false,
|
| 2328 |
"single_word": false,
|
| 2329 |
"special": true
|
| 2330 |
},
|
| 2331 |
-
"
|
| 2332 |
-
"content": "<
|
| 2333 |
"lstrip": false,
|
| 2334 |
"normalized": false,
|
| 2335 |
"rstrip": false,
|
| 2336 |
"single_word": false,
|
| 2337 |
"special": true
|
| 2338 |
},
|
| 2339 |
-
"
|
| 2340 |
-
"content": "<
|
| 2341 |
"lstrip": false,
|
| 2342 |
"normalized": false,
|
| 2343 |
"rstrip": false,
|
| 2344 |
"single_word": false,
|
| 2345 |
"special": true
|
| 2346 |
},
|
| 2347 |
-
"
|
| 2348 |
-
"content": "<
|
| 2349 |
"lstrip": false,
|
| 2350 |
"normalized": false,
|
| 2351 |
"rstrip": false,
|
| 2352 |
"single_word": false,
|
| 2353 |
"special": true
|
| 2354 |
},
|
| 2355 |
-
"
|
| 2356 |
-
"content": "<
|
| 2357 |
"lstrip": false,
|
| 2358 |
"normalized": false,
|
| 2359 |
"rstrip": false,
|
| 2360 |
"single_word": false,
|
| 2361 |
"special": true
|
| 2362 |
},
|
| 2363 |
-
"
|
| 2364 |
-
"content": "<
|
| 2365 |
"lstrip": false,
|
| 2366 |
"normalized": false,
|
| 2367 |
"rstrip": false,
|
| 2368 |
"single_word": false,
|
| 2369 |
"special": true
|
| 2370 |
},
|
| 2371 |
-
"
|
| 2372 |
-
"content": "<
|
| 2373 |
"lstrip": false,
|
| 2374 |
"normalized": false,
|
| 2375 |
"rstrip": false,
|
| 2376 |
"single_word": false,
|
| 2377 |
"special": true
|
| 2378 |
},
|
| 2379 |
-
"
|
| 2380 |
-
"content": "<
|
| 2381 |
"lstrip": false,
|
| 2382 |
"normalized": false,
|
| 2383 |
"rstrip": false,
|
| 2384 |
"single_word": false,
|
| 2385 |
"special": true
|
| 2386 |
},
|
| 2387 |
-
"
|
| 2388 |
-
"content": "<
|
| 2389 |
"lstrip": false,
|
| 2390 |
"normalized": false,
|
| 2391 |
"rstrip": false,
|
| 2392 |
"single_word": false,
|
| 2393 |
"special": true
|
| 2394 |
},
|
| 2395 |
-
"
|
| 2396 |
-
"content": "<
|
| 2397 |
"lstrip": false,
|
| 2398 |
"normalized": false,
|
| 2399 |
"rstrip": false,
|
| 2400 |
"single_word": false,
|
| 2401 |
"special": true
|
| 2402 |
},
|
| 2403 |
-
"
|
| 2404 |
-
"content": "<
|
| 2405 |
"lstrip": false,
|
| 2406 |
"normalized": false,
|
| 2407 |
"rstrip": false,
|
| 2408 |
"single_word": false,
|
| 2409 |
"special": true
|
| 2410 |
},
|
| 2411 |
-
"
|
| 2412 |
-
"content": "<
|
| 2413 |
"lstrip": false,
|
| 2414 |
"normalized": false,
|
| 2415 |
"rstrip": false,
|
| 2416 |
"single_word": false,
|
| 2417 |
"special": true
|
| 2418 |
},
|
| 2419 |
-
"
|
| 2420 |
-
"content": "<
|
| 2421 |
"lstrip": false,
|
| 2422 |
"normalized": false,
|
| 2423 |
"rstrip": false,
|
| 2424 |
"single_word": false,
|
| 2425 |
"special": true
|
| 2426 |
},
|
| 2427 |
-
"
|
| 2428 |
-
"content": "<
|
| 2429 |
"lstrip": false,
|
| 2430 |
"normalized": false,
|
| 2431 |
"rstrip": false,
|
| 2432 |
"single_word": false,
|
| 2433 |
"special": true
|
| 2434 |
},
|
| 2435 |
-
"
|
| 2436 |
-
"content": "<
|
| 2437 |
"lstrip": false,
|
| 2438 |
"normalized": false,
|
| 2439 |
"rstrip": false,
|
| 2440 |
"single_word": false,
|
| 2441 |
"special": true
|
| 2442 |
},
|
| 2443 |
-
"
|
| 2444 |
-
"content": "<
|
| 2445 |
"lstrip": false,
|
| 2446 |
"normalized": false,
|
| 2447 |
"rstrip": false,
|
| 2448 |
"single_word": false,
|
| 2449 |
"special": true
|
| 2450 |
},
|
| 2451 |
-
"
|
| 2452 |
-
"content": "<
|
| 2453 |
"lstrip": false,
|
| 2454 |
"normalized": false,
|
| 2455 |
"rstrip": false,
|
| 2456 |
"single_word": false,
|
| 2457 |
"special": true
|
| 2458 |
},
|
| 2459 |
-
"
|
| 2460 |
-
"content": "<
|
| 2461 |
"lstrip": false,
|
| 2462 |
"normalized": false,
|
| 2463 |
"rstrip": false,
|
| 2464 |
"single_word": false,
|
| 2465 |
"special": true
|
| 2466 |
},
|
| 2467 |
-
"
|
| 2468 |
-
"content": "<
|
| 2469 |
"lstrip": false,
|
| 2470 |
"normalized": false,
|
| 2471 |
"rstrip": false,
|
| 2472 |
"single_word": false,
|
| 2473 |
"special": true
|
| 2474 |
},
|
| 2475 |
-
"
|
| 2476 |
-
"content": "<
|
| 2477 |
"lstrip": false,
|
| 2478 |
"normalized": false,
|
| 2479 |
"rstrip": false,
|
| 2480 |
"single_word": false,
|
| 2481 |
"special": true
|
| 2482 |
},
|
| 2483 |
-
"
|
| 2484 |
-
"content": "<
|
| 2485 |
"lstrip": false,
|
| 2486 |
"normalized": false,
|
| 2487 |
"rstrip": false,
|
| 2488 |
"single_word": false,
|
| 2489 |
"special": true
|
| 2490 |
},
|
| 2491 |
-
"
|
| 2492 |
-
"content": "<
|
| 2493 |
"lstrip": false,
|
| 2494 |
"normalized": false,
|
| 2495 |
"rstrip": false,
|
| 2496 |
"single_word": false,
|
| 2497 |
"special": true
|
| 2498 |
},
|
| 2499 |
-
"
|
| 2500 |
-
"content": "<
|
| 2501 |
"lstrip": false,
|
| 2502 |
"normalized": false,
|
| 2503 |
"rstrip": false,
|
| 2504 |
"single_word": false,
|
| 2505 |
"special": true
|
| 2506 |
},
|
| 2507 |
-
"
|
| 2508 |
-
"content": "<
|
| 2509 |
"lstrip": false,
|
| 2510 |
"normalized": false,
|
| 2511 |
"rstrip": false,
|
| 2512 |
"single_word": false,
|
| 2513 |
"special": true
|
| 2514 |
},
|
| 2515 |
-
"
|
| 2516 |
-
"content": "<
|
| 2517 |
"lstrip": false,
|
| 2518 |
"normalized": false,
|
| 2519 |
"rstrip": false,
|
| 2520 |
"single_word": false,
|
| 2521 |
"special": true
|
| 2522 |
},
|
| 2523 |
-
"
|
| 2524 |
-
"content": "<
|
| 2525 |
"lstrip": false,
|
| 2526 |
"normalized": false,
|
| 2527 |
"rstrip": false,
|
| 2528 |
"single_word": false,
|
| 2529 |
"special": true
|
| 2530 |
},
|
| 2531 |
-
"
|
| 2532 |
-
"content": "<
|
| 2533 |
"lstrip": false,
|
| 2534 |
"normalized": false,
|
| 2535 |
"rstrip": false,
|
| 2536 |
"single_word": false,
|
| 2537 |
"special": true
|
| 2538 |
},
|
| 2539 |
-
"
|
| 2540 |
-
"content": "<
|
| 2541 |
"lstrip": false,
|
| 2542 |
"normalized": false,
|
| 2543 |
"rstrip": false,
|
| 2544 |
"single_word": false,
|
| 2545 |
"special": true
|
| 2546 |
},
|
| 2547 |
-
"
|
| 2548 |
-
"content": "<
|
| 2549 |
"lstrip": false,
|
| 2550 |
"normalized": false,
|
| 2551 |
"rstrip": false,
|
| 2552 |
"single_word": false,
|
| 2553 |
"special": true
|
| 2554 |
},
|
| 2555 |
-
"
|
| 2556 |
-
"content": "<dom_formosan_epark>",
|
| 2557 |
-
"lstrip": false,
|
| 2558 |
-
"normalized": false,
|
| 2559 |
-
"rstrip": false,
|
| 2560 |
-
"single_word": false,
|
| 2561 |
-
"special": true
|
| 2562 |
-
},
|
| 2563 |
-
"261470": {
|
| 2564 |
-
"content": "<dom_formosan_ferrell_taiwan_aboriginal_groups_proble>",
|
| 2565 |
-
"lstrip": false,
|
| 2566 |
-
"normalized": false,
|
| 2567 |
-
"rstrip": false,
|
| 2568 |
-
"single_word": false,
|
| 2569 |
-
"special": true
|
| 2570 |
-
},
|
| 2571 |
-
"261471": {
|
| 2572 |
-
"content": "<dom_formosan_george_leroy_shelley_vudai_rukai>",
|
| 2573 |
-
"lstrip": false,
|
| 2574 |
-
"normalized": false,
|
| 2575 |
-
"rstrip": false,
|
| 2576 |
-
"single_word": false,
|
| 2577 |
-
"special": true
|
| 2578 |
-
},
|
| 2579 |
-
"261472": {
|
| 2580 |
-
"content": "<dom_formosan_gitbook_translations>",
|
| 2581 |
-
"lstrip": false,
|
| 2582 |
-
"normalized": false,
|
| 2583 |
-
"rstrip": false,
|
| 2584 |
-
"single_word": false,
|
| 2585 |
-
"special": true
|
| 2586 |
-
},
|
| 2587 |
-
"261473": {
|
| 2588 |
-
"content": "<dom_formosan_glosbe>",
|
| 2589 |
-
"lstrip": false,
|
| 2590 |
-
"normalized": false,
|
| 2591 |
-
"rstrip": false,
|
| 2592 |
-
"single_word": false,
|
| 2593 |
-
"special": true
|
| 2594 |
-
},
|
| 2595 |
-
"261474": {
|
| 2596 |
-
"content": "<dom_formosan_gujing_lin_tsou_serial_verb_constructio>",
|
| 2597 |
-
"lstrip": false,
|
| 2598 |
-
"normalized": false,
|
| 2599 |
-
"rstrip": false,
|
| 2600 |
-
"single_word": false,
|
| 2601 |
-
"special": true
|
| 2602 |
-
},
|
| 2603 |
-
"261475": {
|
| 2604 |
-
"content": "<dom_formosan_henry_chang_nominal_aspect_tsou>",
|
| 2605 |
-
"lstrip": false,
|
| 2606 |
-
"normalized": false,
|
| 2607 |
-
"rstrip": false,
|
| 2608 |
-
"single_word": false,
|
| 2609 |
-
"special": true
|
| 2610 |
-
},
|
| 2611 |
-
"261476": {
|
| 2612 |
-
"content": "<dom_formosan_henry_chang_tsou_causative_applicative>",
|
| 2613 |
-
"lstrip": false,
|
| 2614 |
-
"normalized": false,
|
| 2615 |
-
"rstrip": false,
|
| 2616 |
-
"single_word": false,
|
| 2617 |
-
"special": true
|
| 2618 |
-
},
|
| 2619 |
-
"261477": {
|
| 2620 |
-
"content": "<dom_formosan_henry_y_chang_formosan_speech_act_mood>",
|
| 2621 |
-
"lstrip": false,
|
| 2622 |
-
"normalized": false,
|
| 2623 |
-
"rstrip": false,
|
| 2624 |
-
"single_word": false,
|
| 2625 |
-
"special": true
|
| 2626 |
-
},
|
| 2627 |
-
"261478": {
|
| 2628 |
-
"content": "<dom_formosan_ho_dan_phonological_system_butonglu_pai>",
|
| 2629 |
-
"lstrip": false,
|
| 2630 |
-
"normalized": false,
|
| 2631 |
-
"rstrip": false,
|
| 2632 |
-
"single_word": false,
|
| 2633 |
-
"special": true
|
| 2634 |
-
},
|
| 2635 |
-
"261479": {
|
| 2636 |
-
"content": "<dom_formosan_holmer_seediq>",
|
| 2637 |
-
"lstrip": false,
|
| 2638 |
-
"normalized": false,
|
| 2639 |
-
"rstrip": false,
|
| 2640 |
-
"single_word": false,
|
| 2641 |
-
"special": true
|
| 2642 |
-
},
|
| 2643 |
-
"261480": {
|
| 2644 |
-
"content": "<dom_formosan_hsiu_chuan_liao_transitivity_ergativity>",
|
| 2645 |
-
"lstrip": false,
|
| 2646 |
-
"normalized": false,
|
| 2647 |
-
"rstrip": false,
|
| 2648 |
-
"single_word": false,
|
| 2649 |
-
"special": true
|
| 2650 |
-
},
|
| 2651 |
-
"261481": {
|
| 2652 |
-
"content": "<dom_formosan_huang_dongqiu_atayal_bunun_amis_languag>",
|
| 2653 |
-
"lstrip": false,
|
| 2654 |
-
"normalized": false,
|
| 2655 |
-
"rstrip": false,
|
| 2656 |
-
"single_word": false,
|
| 2657 |
-
"special": true
|
| 2658 |
-
},
|
| 2659 |
-
"261482": {
|
| 2660 |
-
"content": "<dom_formosan_huang_grammaticalization_squliq_atayal>",
|
| 2661 |
-
"lstrip": false,
|
| 2662 |
-
"normalized": false,
|
| 2663 |
-
"rstrip": false,
|
| 2664 |
-
"single_word": false,
|
| 2665 |
-
"special": true
|
| 2666 |
-
},
|
| 2667 |
-
"261483": {
|
| 2668 |
-
"content": "<dom_formosan_huang_hui_chuan_glide_formation_takitud>",
|
| 2669 |
-
"lstrip": false,
|
| 2670 |
-
"normalized": false,
|
| 2671 |
-
"rstrip": false,
|
| 2672 |
-
"single_word": false,
|
| 2673 |
-
"special": true
|
| 2674 |
-
},
|
| 2675 |
-
"261484": {
|
| 2676 |
-
"content": "<dom_formosan_huang_mei_chin_atayal_reference_grammar>",
|
| 2677 |
-
"lstrip": false,
|
| 2678 |
-
"normalized": false,
|
| 2679 |
-
"rstrip": false,
|
| 2680 |
-
"single_word": false,
|
| 2681 |
-
"special": true
|
| 2682 |
-
},
|
| 2683 |
-
"261485": {
|
| 2684 |
-
"content": "<dom_formosan_hui_chuan_j_huang_syllable_types_in_bun>",
|
| 2685 |
-
"lstrip": false,
|
| 2686 |
-
"normalized": false,
|
| 2687 |
-
"rstrip": false,
|
| 2688 |
-
"single_word": false,
|
| 2689 |
-
"special": true
|
| 2690 |
-
},
|
| 2691 |
-
"261486": {
|
| 2692 |
-
"content": "<dom_formosan_hui_shan_lin_squliq_atayal_reduplicatio>",
|
| 2693 |
-
"lstrip": false,
|
| 2694 |
-
"normalized": false,
|
| 2695 |
-
"rstrip": false,
|
| 2696 |
-
"single_word": false,
|
| 2697 |
-
"special": true
|
| 2698 |
-
},
|
| 2699 |
-
"261487": {
|
| 2700 |
-
"content": "<dom_formosan_huteson_rukai_survey>",
|
| 2701 |
-
"lstrip": false,
|
| 2702 |
-
"normalized": false,
|
| 2703 |
-
"rstrip": false,
|
| 2704 |
-
"single_word": false,
|
| 2705 |
-
"special": true
|
| 2706 |
-
},
|
| 2707 |
-
"261488": {
|
| 2708 |
-
"content": "<dom_formosan_ian_maddieson_and_richard_wright_the_vo>",
|
| 2709 |
-
"lstrip": false,
|
| 2710 |
-
"normalized": false,
|
| 2711 |
-
"rstrip": false,
|
| 2712 |
-
"single_word": false,
|
| 2713 |
-
"special": true
|
| 2714 |
-
},
|
| 2715 |
-
"261489": {
|
| 2716 |
-
"content": "<dom_formosan_ilrdf_42_language_practice_word_lists>",
|
| 2717 |
-
"lstrip": false,
|
| 2718 |
-
"normalized": false,
|
| 2719 |
-
"rstrip": false,
|
| 2720 |
-
"single_word": false,
|
| 2721 |
-
"special": true
|
| 2722 |
-
},
|
| 2723 |
-
"261490": {
|
| 2724 |
-
"content": "<dom_formosan_ilrdf_tousvusvutu_kita>",
|
| 2725 |
-
"lstrip": false,
|
| 2726 |
-
"normalized": false,
|
| 2727 |
-
"rstrip": false,
|
| 2728 |
-
"single_word": false,
|
| 2729 |
-
"special": true
|
| 2730 |
-
},
|
| 2731 |
-
"261491": {
|
| 2732 |
-
"content": "<dom_formosan_indigenous_education_resource_center_ke>",
|
| 2733 |
-
"lstrip": false,
|
| 2734 |
-
"normalized": false,
|
| 2735 |
-
"rstrip": false,
|
| 2736 |
-
"single_word": false,
|
| 2737 |
-
"special": true
|
| 2738 |
-
},
|
| 2739 |
-
"261492": {
|
| 2740 |
-
"content": "<dom_formosan_indigenous_language_literary_awards>",
|
| 2741 |
-
"lstrip": false,
|
| 2742 |
-
"normalized": false,
|
| 2743 |
-
"rstrip": false,
|
| 2744 |
-
"single_word": false,
|
| 2745 |
-
"special": true
|
| 2746 |
-
},
|
| 2747 |
-
"261493": {
|
| 2748 |
-
"content": "<dom_formosan_isabelle_bril_roots_and_stems_lexical_a>",
|
| 2749 |
-
"lstrip": false,
|
| 2750 |
-
"normalized": false,
|
| 2751 |
-
"rstrip": false,
|
| 2752 |
-
"single_word": false,
|
| 2753 |
-
"special": true
|
| 2754 |
-
},
|
| 2755 |
-
"261494": {
|
| 2756 |
-
"content": "<dom_formosan_jian_iwan_guo_qingliu_life_history>",
|
| 2757 |
-
"lstrip": false,
|
| 2758 |
-
"normalized": false,
|
| 2759 |
-
"rstrip": false,
|
| 2760 |
-
"single_word": false,
|
| 2761 |
-
"special": true
|
| 2762 |
-
},
|
| 2763 |
-
"261495": {
|
| 2764 |
-
"content": "<dom_formosan_jian_shilang_introduction_thao_grammar>",
|
| 2765 |
-
"lstrip": false,
|
| 2766 |
-
"normalized": false,
|
| 2767 |
-
"rstrip": false,
|
| 2768 |
-
"single_word": false,
|
| 2769 |
-
"special": true
|
| 2770 |
-
},
|
| 2771 |
-
"261496": {
|
| 2772 |
-
"content": "<dom_formosan_john_tu_er_wei_notes_on_the_religious_b>",
|
| 2773 |
-
"lstrip": false,
|
| 2774 |
-
"normalized": false,
|
| 2775 |
-
"rstrip": false,
|
| 2776 |
-
"single_word": false,
|
| 2777 |
-
"special": true
|
| 2778 |
-
},
|
| 2779 |
-
"261497": {
|
| 2780 |
-
"content": "<dom_formosan_john_u_wolff_the_proto_austronesian_pho>",
|
| 2781 |
-
"lstrip": false,
|
| 2782 |
-
"normalized": false,
|
| 2783 |
-
"rstrip": false,
|
| 2784 |
-
"single_word": false,
|
| 2785 |
-
"special": true
|
| 2786 |
-
},
|
| 2787 |
-
"261498": {
|
| 2788 |
-
"content": "<dom_formosan_jonathan_kuo_amis_manner_result_verbs>",
|
| 2789 |
-
"lstrip": false,
|
| 2790 |
-
"normalized": false,
|
| 2791 |
-
"rstrip": false,
|
| 2792 |
-
"single_word": false,
|
| 2793 |
-
"special": true
|
| 2794 |
-
},
|
| 2795 |
-
"261499": {
|
| 2796 |
-
"content": "<dom_formosan_josiane_cauquelin_aborigines_taiwan_puy>",
|
| 2797 |
-
"lstrip": false,
|
| 2798 |
-
"normalized": false,
|
| 2799 |
-
"rstrip": false,
|
| 2800 |
-
"single_word": false,
|
| 2801 |
-
"special": true
|
| 2802 |
-
},
|
| 2803 |
-
"261500": {
|
| 2804 |
-
"content": "<dom_formosan_joy_wu_clausal_modifiers_in_amis>",
|
| 2805 |
-
"lstrip": false,
|
| 2806 |
-
"normalized": false,
|
| 2807 |
-
"rstrip": false,
|
| 2808 |
-
"single_word": false,
|
| 2809 |
-
"special": true
|
| 2810 |
-
},
|
| 2811 |
-
"261501": {
|
| 2812 |
-
"content": "<dom_formosan_joy_wu_verb_classification_case_marking>",
|
| 2813 |
-
"lstrip": false,
|
| 2814 |
-
"normalized": false,
|
| 2815 |
-
"rstrip": false,
|
| 2816 |
-
"single_word": false,
|
| 2817 |
-
"special": true
|
| 2818 |
-
},
|
| 2819 |
-
"261502": {
|
| 2820 |
-
"content": "<dom_formosan_kanakanavu_texts>",
|
| 2821 |
-
"lstrip": false,
|
| 2822 |
-
"normalized": false,
|
| 2823 |
-
"rstrip": false,
|
| 2824 |
-
"single_word": false,
|
| 2825 |
-
"special": true
|
| 2826 |
-
},
|
| 2827 |
-
"261503": {
|
| 2828 |
-
"content": "<dom_formosan_kavalan_zhang_reference_grammar>",
|
| 2829 |
-
"lstrip": false,
|
| 2830 |
-
"normalized": false,
|
| 2831 |
-
"rstrip": false,
|
| 2832 |
-
"single_word": false,
|
| 2833 |
-
"special": true
|
| 2834 |
-
},
|
| 2835 |
-
"261504": {
|
| 2836 |
-
"content": "<dom_formosan_kumu_tapas_tribal_memory_oral_history_w>",
|
| 2837 |
-
"lstrip": false,
|
| 2838 |
-
"normalized": false,
|
| 2839 |
-
"rstrip": false,
|
| 2840 |
-
"single_word": false,
|
| 2841 |
-
"special": true
|
| 2842 |
-
},
|
| 2843 |
-
"261505": {
|
| 2844 |
-
"content": "<dom_formosan_kuo_j_c_argument_alternation_and_argume>",
|
| 2845 |
-
"lstrip": false,
|
| 2846 |
-
"normalized": false,
|
| 2847 |
-
"rstrip": false,
|
| 2848 |
-
"single_word": false,
|
| 2849 |
-
"special": true
|
| 2850 |
-
},
|
| 2851 |
-
"261506": {
|
| 2852 |
-
"content": "<dom_formosan_lei_shih_family_system_paiwan_at_su_pai>",
|
| 2853 |
-
"lstrip": false,
|
| 2854 |
-
"normalized": false,
|
| 2855 |
-
"rstrip": false,
|
| 2856 |
-
"single_word": false,
|
| 2857 |
-
"special": true
|
| 2858 |
-
},
|
| 2859 |
-
"261507": {
|
| 2860 |
-
"content": "<dom_formosan_li_chen_yeh_developing_a_hla_alua_learn>",
|
| 2861 |
-
"lstrip": false,
|
| 2862 |
-
"normalized": false,
|
| 2863 |
-
"rstrip": false,
|
| 2864 |
-
"single_word": false,
|
| 2865 |
-
"special": true
|
| 2866 |
-
},
|
| 2867 |
-
"261508": {
|
| 2868 |
-
"content": "<dom_formosan_li_may_sung_budai_rukai_exclamatives>",
|
| 2869 |
-
"lstrip": false,
|
| 2870 |
-
"normalized": false,
|
| 2871 |
-
"rstrip": false,
|
| 2872 |
-
"single_word": false,
|
| 2873 |
-
"special": true
|
| 2874 |
-
},
|
| 2875 |
-
"261509": {
|
| 2876 |
-
"content": "<dom_formosan_li_may_sung_clausal_nominalization_buda>",
|
| 2877 |
-
"lstrip": false,
|
| 2878 |
-
"normalized": false,
|
| 2879 |
-
"rstrip": false,
|
| 2880 |
-
"single_word": false,
|
| 2881 |
-
"special": true
|
| 2882 |
-
},
|
| 2883 |
-
"261510": {
|
| 2884 |
-
"content": "<dom_formosan_lillian_huang_atayal_participants_cross>",
|
| 2885 |
-
"lstrip": false,
|
| 2886 |
-
"normalized": false,
|
| 2887 |
-
"rstrip": false,
|
| 2888 |
-
"single_word": false,
|
| 2889 |
-
"special": true
|
| 2890 |
-
},
|
| 2891 |
-
"261511": {
|
| 2892 |
-
"content": "<dom_formosan_lillian_huang_ergativity_atayal>",
|
| 2893 |
-
"lstrip": false,
|
| 2894 |
-
"normalized": false,
|
| 2895 |
-
"rstrip": false,
|
| 2896 |
-
"single_word": false,
|
| 2897 |
-
"special": true
|
| 2898 |
-
},
|
| 2899 |
-
"261512": {
|
| 2900 |
-
"content": "<dom_formosan_liu_manyi_kaskun_ata_matas_i_ki_quaz>",
|
| 2901 |
-
"lstrip": false,
|
| 2902 |
-
"normalized": false,
|
| 2903 |
-
"rstrip": false,
|
| 2904 |
-
"single_word": false,
|
| 2905 |
-
"special": true
|
| 2906 |
-
},
|
| 2907 |
-
"261513": {
|
| 2908 |
-
"content": "<dom_formosan_malcom_d_ross_the_history_and_transitiv>",
|
| 2909 |
-
"lstrip": false,
|
| 2910 |
-
"normalized": false,
|
| 2911 |
-
"rstrip": false,
|
| 2912 |
-
"single_word": false,
|
| 2913 |
-
"special": true
|
| 2914 |
-
},
|
| 2915 |
-
"261514": {
|
| 2916 |
-
"content": "<dom_formosan_malcom_ross_proto_austronesian_verbal_m>",
|
| 2917 |
-
"lstrip": false,
|
| 2918 |
-
"normalized": false,
|
| 2919 |
-
"rstrip": false,
|
| 2920 |
-
"single_word": false,
|
| 2921 |
-
"special": true
|
| 2922 |
-
},
|
| 2923 |
-
"261515": {
|
| 2924 |
-
"content": "<dom_formosan_man_ni_chu_the_measurement_of_final_i_v>",
|
| 2925 |
-
"lstrip": false,
|
| 2926 |
-
"normalized": false,
|
| 2927 |
-
"rstrip": false,
|
| 2928 |
-
"single_word": false,
|
| 2929 |
-
"special": true
|
| 2930 |
-
},
|
| 2931 |
-
"261516": {
|
| 2932 |
-
"content": "<dom_formosan_matsuzawa_kazuko_the_social_and_ritual>",
|
| 2933 |
-
"lstrip": false,
|
| 2934 |
-
"normalized": false,
|
| 2935 |
-
"rstrip": false,
|
| 2936 |
-
"single_word": false,
|
| 2937 |
-
"special": true
|
| 2938 |
-
},
|
| 2939 |
-
"261517": {
|
| 2940 |
-
"content": "<dom_formosan_maya_yeh_blaq_uv_construction_atayal>",
|
| 2941 |
-
"lstrip": false,
|
| 2942 |
-
"normalized": false,
|
| 2943 |
-
"rstrip": false,
|
| 2944 |
-
"single_word": false,
|
| 2945 |
-
"special": true
|
| 2946 |
-
},
|
| 2947 |
-
"261518": {
|
| 2948 |
-
"content": "<dom_formosan_mayumi_oiwa_adverbial_verb_construction>",
|
| 2949 |
-
"lstrip": false,
|
| 2950 |
-
"normalized": false,
|
| 2951 |
-
"rstrip": false,
|
| 2952 |
-
"single_word": false,
|
| 2953 |
-
"special": true
|
| 2954 |
-
},
|
| 2955 |
-
"261519": {
|
| 2956 |
-
"content": "<dom_formosan_mayumi_oiwa_bungard_morphology_and_synt>",
|
| 2957 |
-
"lstrip": false,
|
| 2958 |
-
"normalized": false,
|
| 2959 |
-
"rstrip": false,
|
| 2960 |
-
"single_word": false,
|
| 2961 |
-
"special": true
|
| 2962 |
-
},
|
| 2963 |
-
"261520": {
|
| 2964 |
-
"content": "<dom_formosan_mayumi_oiwa_possessor_raising_truku_see>",
|
| 2965 |
-
"lstrip": false,
|
| 2966 |
-
"normalized": false,
|
| 2967 |
-
"rstrip": false,
|
| 2968 |
-
"single_word": false,
|
| 2969 |
-
"special": true
|
| 2970 |
-
},
|
| 2971 |
-
"261521": {
|
| 2972 |
-
"content": "<dom_formosan_mei_chin_huang_verb_classification_in_m>",
|
| 2973 |
-
"lstrip": false,
|
| 2974 |
-
"normalized": false,
|
| 2975 |
-
"rstrip": false,
|
| 2976 |
-
"single_word": false,
|
| 2977 |
-
"special": true
|
| 2978 |
-
},
|
| 2979 |
-
"261522": {
|
| 2980 |
-
"content": "<dom_formosan_melissa_shih_hui_lin_sakizaya_or_amis_a>",
|
| 2981 |
-
"lstrip": false,
|
| 2982 |
-
"normalized": false,
|
| 2983 |
-
"rstrip": false,
|
| 2984 |
-
"single_word": false,
|
| 2985 |
-
"special": true
|
| 2986 |
-
},
|
| 2987 |
-
"261523": {
|
| 2988 |
-
"content": "<dom_formosan_nanang_tadaw_naci_mowna_pgagu>",
|
| 2989 |
-
"lstrip": false,
|
| 2990 |
-
"normalized": false,
|
| 2991 |
-
"rstrip": false,
|
| 2992 |
-
"single_word": false,
|
| 2993 |
-
"special": true
|
| 2994 |
-
},
|
| 2995 |
-
"261524": {
|
| 2996 |
-
"content": "<dom_formosan_naomi_tsukida_correlative_clauses_seedi>",
|
| 2997 |
-
"lstrip": false,
|
| 2998 |
-
"normalized": false,
|
| 2999 |
-
"rstrip": false,
|
| 3000 |
-
"single_word": false,
|
| 3001 |
-
"special": true
|
| 3002 |
-
},
|
| 3003 |
-
"261525": {
|
| 3004 |
-
"content": "<dom_formosan_naomi_tsukida_ditransitive_causative_se>",
|
| 3005 |
-
"lstrip": false,
|
| 3006 |
-
"normalized": false,
|
| 3007 |
-
"rstrip": false,
|
| 3008 |
-
"single_word": false,
|
| 3009 |
-
"special": true
|
| 3010 |
-
},
|
| 3011 |
-
"261526": {
|
| 3012 |
-
"content": "<dom_formosan_nowbucyang_truku_thesis>",
|
| 3013 |
-
"lstrip": false,
|
| 3014 |
-
"normalized": false,
|
| 3015 |
-
"rstrip": false,
|
| 3016 |
-
"single_word": false,
|
| 3017 |
-
"special": true
|
| 3018 |
-
},
|
| 3019 |
-
"261527": {
|
| 3020 |
-
"content": "<dom_formosan_ochiai_izumi_2016_comparative_linguisti>",
|
| 3021 |
-
"lstrip": false,
|
| 3022 |
-
"normalized": false,
|
| 3023 |
-
"rstrip": false,
|
| 3024 |
-
"single_word": false,
|
| 3025 |
-
"special": true
|
| 3026 |
-
},
|
| 3027 |
-
"261528": {
|
| 3028 |
-
"content": "<dom_formosan_ochiai_izumi_bu_hwan_vocabulary_recorde>",
|
| 3029 |
-
"lstrip": false,
|
| 3030 |
-
"normalized": false,
|
| 3031 |
-
"rstrip": false,
|
| 3032 |
-
"single_word": false,
|
| 3033 |
-
"special": true
|
| 3034 |
-
},
|
| 3035 |
-
"261529": {
|
| 3036 |
-
"content": "<dom_formosan_ochiai_izumi_numerals_paran_seediq_rela>",
|
| 3037 |
-
"lstrip": false,
|
| 3038 |
-
"normalized": false,
|
| 3039 |
-
"rstrip": false,
|
| 3040 |
-
"single_word": false,
|
| 3041 |
-
"special": true
|
| 3042 |
-
},
|
| 3043 |
-
"261530": {
|
| 3044 |
-
"content": "<dom_formosan_ochiai_izumi_on_a_seediq_glossary_recor>",
|
| 3045 |
-
"lstrip": false,
|
| 3046 |
-
"normalized": false,
|
| 3047 |
-
"rstrip": false,
|
| 3048 |
-
"single_word": false,
|
| 3049 |
-
"special": true
|
| 3050 |
-
},
|
| 3051 |
-
"261531": {
|
| 3052 |
-
"content": "<dom_formosan_old_texts>",
|
| 3053 |
-
"lstrip": false,
|
| 3054 |
-
"normalized": false,
|
| 3055 |
-
"rstrip": false,
|
| 3056 |
-
"single_word": false,
|
| 3057 |
-
"special": true
|
| 3058 |
-
},
|
| 3059 |
-
"261532": {
|
| 3060 |
-
"content": "<dom_formosan_paiwan_ho_five_dialects>",
|
| 3061 |
-
"lstrip": false,
|
| 3062 |
-
"normalized": false,
|
| 3063 |
-
"rstrip": false,
|
| 3064 |
-
"single_word": false,
|
| 3065 |
-
"special": true
|
| 3066 |
-
},
|
| 3067 |
-
"261533": {
|
| 3068 |
-
"content": "<dom_formosan_paiwanstories>",
|
| 3069 |
-
"lstrip": false,
|
| 3070 |
-
"normalized": false,
|
| 3071 |
-
"rstrip": false,
|
| 3072 |
-
"single_word": false,
|
| 3073 |
-
"special": true
|
| 3074 |
-
},
|
| 3075 |
-
"261534": {
|
| 3076 |
-
"content": "<dom_formosan_pang_hsin_ting_reconstruction_proto_puy>",
|
| 3077 |
-
"lstrip": false,
|
| 3078 |
-
"normalized": false,
|
| 3079 |
-
"rstrip": false,
|
| 3080 |
-
"single_word": false,
|
| 3081 |
-
"special": true
|
| 3082 |
-
},
|
| 3083 |
-
"261535": {
|
| 3084 |
-
"content": "<dom_formosan_patricia_stanley_morphophonemics_of_ver>",
|
| 3085 |
-
"lstrip": false,
|
| 3086 |
-
"normalized": false,
|
| 3087 |
-
"rstrip": false,
|
| 3088 |
-
"single_word": false,
|
| 3089 |
-
"special": true
|
| 3090 |
-
},
|
| 3091 |
-
"261536": {
|
| 3092 |
-
"content": "<dom_formosan_paul_jen_kuei_li_comparative_bunun_dial>",
|
| 3093 |
-
"lstrip": false,
|
| 3094 |
-
"normalized": false,
|
| 3095 |
-
"rstrip": false,
|
| 3096 |
-
"single_word": false,
|
| 3097 |
-
"special": true
|
| 3098 |
-
},
|
| 3099 |
-
"261537": {
|
| 3100 |
-
"content": "<dom_formosan_paul_jen_kuei_li_conjunction_thao>",
|
| 3101 |
-
"lstrip": false,
|
| 3102 |
-
"normalized": false,
|
| 3103 |
-
"rstrip": false,
|
| 3104 |
-
"single_word": false,
|
| 3105 |
-
"special": true
|
| 3106 |
-
},
|
| 3107 |
-
"261538": {
|
| 3108 |
-
"content": "<dom_formosan_paul_jen_kuei_li_internal_relationships>",
|
| 3109 |
-
"lstrip": false,
|
| 3110 |
-
"normalized": false,
|
| 3111 |
-
"rstrip": false,
|
| 3112 |
-
"single_word": false,
|
| 3113 |
-
"special": true
|
| 3114 |
-
},
|
| 3115 |
-
"261539": {
|
| 3116 |
-
"content": "<dom_formosan_paul_jen_kuei_li_origins_of_the_east_fo>",
|
| 3117 |
-
"lstrip": false,
|
| 3118 |
-
"normalized": false,
|
| 3119 |
-
"rstrip": false,
|
| 3120 |
-
"single_word": false,
|
| 3121 |
-
"special": true
|
| 3122 |
-
},
|
| 3123 |
-
"261540": {
|
| 3124 |
-
"content": "<dom_formosan_paul_jen_kuei_li_review_of_taiwan_abori>",
|
| 3125 |
-
"lstrip": false,
|
| 3126 |
-
"normalized": false,
|
| 3127 |
-
"rstrip": false,
|
| 3128 |
-
"single_word": false,
|
| 3129 |
-
"special": true
|
| 3130 |
-
},
|
| 3131 |
-
"261541": {
|
| 3132 |
-
"content": "<dom_formosan_paul_jen_kuei_li_rukai_structure>",
|
| 3133 |
-
"lstrip": false,
|
| 3134 |
-
"normalized": false,
|
| 3135 |
-
"rstrip": false,
|
| 3136 |
-
"single_word": false,
|
| 3137 |
-
"special": true
|
| 3138 |
-
},
|
| 3139 |
-
"261542": {
|
| 3140 |
-
"content": "<dom_formosan_paul_jen_kuei_li_some_plant_names_in_fo>",
|
| 3141 |
-
"lstrip": false,
|
| 3142 |
-
"normalized": false,
|
| 3143 |
-
"rstrip": false,
|
| 3144 |
-
"single_word": false,
|
| 3145 |
-
"special": true
|
| 3146 |
-
},
|
| 3147 |
-
"261543": {
|
| 3148 |
-
"content": "<dom_formosan_paul_jen_kuei_li_the_preglottalised_sto>",
|
| 3149 |
-
"lstrip": false,
|
| 3150 |
-
"normalized": false,
|
| 3151 |
-
"rstrip": false,
|
| 3152 |
-
"single_word": false,
|
| 3153 |
-
"special": true
|
| 3154 |
-
},
|
| 3155 |
-
"261544": {
|
| 3156 |
-
"content": "<dom_formosan_paul_li_atayalic_final_voiced_stops>",
|
| 3157 |
-
"lstrip": false,
|
| 3158 |
-
"normalized": false,
|
| 3159 |
-
"rstrip": false,
|
| 3160 |
-
"single_word": false,
|
| 3161 |
-
"special": true
|
| 3162 |
-
},
|
| 3163 |
-
"261545": {
|
| 3164 |
-
"content": "<dom_formosan_paul_li_case_marking_four_formosan_lang>",
|
| 3165 |
-
"lstrip": false,
|
| 3166 |
-
"normalized": false,
|
| 3167 |
-
"rstrip": false,
|
| 3168 |
-
"single_word": false,
|
| 3169 |
-
"special": true
|
| 3170 |
-
},
|
| 3171 |
-
"261546": {
|
| 3172 |
-
"content": "<dom_formosan_paul_li_position_atayal_austronesian>",
|
| 3173 |
-
"lstrip": false,
|
| 3174 |
-
"normalized": false,
|
| 3175 |
-
"rstrip": false,
|
| 3176 |
-
"single_word": false,
|
| 3177 |
-
"special": true
|
| 3178 |
-
},
|
| 3179 |
-
"261547": {
|
| 3180 |
-
"content": "<dom_formosan_pingdong_county_government_kai_na_sepuc>",
|
| 3181 |
-
"lstrip": false,
|
| 3182 |
-
"normalized": false,
|
| 3183 |
-
"rstrip": false,
|
| 3184 |
-
"single_word": false,
|
| 3185 |
-
"special": true
|
| 3186 |
-
},
|
| 3187 |
-
"261548": {
|
| 3188 |
-
"content": "<dom_formosan_puyuma_chen_raising_to_object>",
|
| 3189 |
-
"lstrip": false,
|
| 3190 |
-
"normalized": false,
|
| 3191 |
-
"rstrip": false,
|
| 3192 |
-
"single_word": false,
|
| 3193 |
-
"special": true
|
| 3194 |
-
},
|
| 3195 |
-
"261549": {
|
| 3196 |
-
"content": "<dom_formosan_puyuma_katipol_kopfjagdriten>",
|
| 3197 |
-
"lstrip": false,
|
| 3198 |
-
"normalized": false,
|
| 3199 |
-
"rstrip": false,
|
| 3200 |
-
"single_word": false,
|
| 3201 |
-
"special": true
|
| 3202 |
-
},
|
| 3203 |
-
"261550": {
|
| 3204 |
-
"content": "<dom_formosan_puyuma_teng_pronominal_systems>",
|
| 3205 |
-
"lstrip": false,
|
| 3206 |
-
"normalized": false,
|
| 3207 |
-
"rstrip": false,
|
| 3208 |
-
"single_word": false,
|
| 3209 |
-
"special": true
|
| 3210 |
-
},
|
| 3211 |
-
"261551": {
|
| 3212 |
-
"content": "<dom_formosan_puyuma_teng_reference_grammar>",
|
| 3213 |
-
"lstrip": false,
|
| 3214 |
-
"normalized": false,
|
| 3215 |
-
"rstrip": false,
|
| 3216 |
-
"single_word": false,
|
| 3217 |
-
"special": true
|
| 3218 |
-
},
|
| 3219 |
-
"261552": {
|
| 3220 |
-
"content": "<dom_formosan_raleigh_ferrell_construction_markers_fo>",
|
| 3221 |
-
"lstrip": false,
|
| 3222 |
-
"normalized": false,
|
| 3223 |
-
"rstrip": false,
|
| 3224 |
-
"single_word": false,
|
| 3225 |
-
"special": true
|
| 3226 |
-
},
|
| 3227 |
-
"261553": {
|
| 3228 |
-
"content": "<dom_formosan_raleigh_ferrell_paiwan_phonology_and_pr>",
|
| 3229 |
-
"lstrip": false,
|
| 3230 |
-
"normalized": false,
|
| 3231 |
-
"rstrip": false,
|
| 3232 |
-
"single_word": false,
|
| 3233 |
-
"special": true
|
| 3234 |
-
},
|
| 3235 |
-
"261554": {
|
| 3236 |
-
"content": "<dom_formosan_raleigh_j_ferrell_intent_and_volition_i>",
|
| 3237 |
-
"lstrip": false,
|
| 3238 |
-
"normalized": false,
|
| 3239 |
-
"rstrip": false,
|
| 3240 |
-
"single_word": false,
|
| 3241 |
-
"special": true
|
| 3242 |
-
},
|
| 3243 |
-
"261555": {
|
| 3244 |
-
"content": "<dom_formosan_rik_bunun>",
|
| 3245 |
-
"lstrip": false,
|
| 3246 |
-
"normalized": false,
|
| 3247 |
-
"rstrip": false,
|
| 3248 |
-
"single_word": false,
|
| 3249 |
-
"special": true
|
| 3250 |
-
},
|
| 3251 |
-
"261556": {
|
| 3252 |
-
"content": "<dom_formosan_rik_de_busser_the_influence_of_christia>",
|
| 3253 |
-
"lstrip": false,
|
| 3254 |
-
"normalized": false,
|
| 3255 |
-
"rstrip": false,
|
| 3256 |
-
"single_word": false,
|
| 3257 |
-
"special": true
|
| 3258 |
-
},
|
| 3259 |
-
"261557": {
|
| 3260 |
-
"content": "<dom_formosan_robert_blust_a_note_on_covert_structure>",
|
| 3261 |
-
"lstrip": false,
|
| 3262 |
-
"normalized": false,
|
| 3263 |
-
"rstrip": false,
|
| 3264 |
-
"single_word": false,
|
| 3265 |
-
"special": true
|
| 3266 |
-
},
|
| 3267 |
-
"261558": {
|
| 3268 |
-
"content": "<dom_formosan_robert_blust_austronesian_homeland_ling>",
|
| 3269 |
-
"lstrip": false,
|
| 3270 |
-
"normalized": false,
|
| 3271 |
-
"rstrip": false,
|
| 3272 |
-
"single_word": false,
|
| 3273 |
-
"special": true
|
| 3274 |
-
},
|
| 3275 |
-
"261559": {
|
| 3276 |
-
"content": "<dom_formosan_robert_blust_some_remarks_linguistic_po>",
|
| 3277 |
-
"lstrip": false,
|
| 3278 |
-
"normalized": false,
|
| 3279 |
-
"rstrip": false,
|
| 3280 |
-
"single_word": false,
|
| 3281 |
-
"special": true
|
| 3282 |
-
},
|
| 3283 |
-
"261560": {
|
| 3284 |
-
"content": "<dom_formosan_robert_blust_thao_triplication>",
|
| 3285 |
-
"lstrip": false,
|
| 3286 |
-
"normalized": false,
|
| 3287 |
-
"rstrip": false,
|
| 3288 |
-
"single_word": false,
|
| 3289 |
-
"special": true
|
| 3290 |
-
},
|
| 3291 |
-
"261561": {
|
| 3292 |
-
"content": "<dom_formosan_robert_blust_the_austronesian_languages>",
|
| 3293 |
-
"lstrip": false,
|
| 3294 |
-
"normalized": false,
|
| 3295 |
-
"rstrip": false,
|
| 3296 |
-
"single_word": false,
|
| 3297 |
-
"special": true
|
| 3298 |
-
},
|
| 3299 |
-
"261562": {
|
| 3300 |
-
"content": "<dom_formosan_rukai_mantauran_stories>",
|
| 3301 |
-
"lstrip": false,
|
| 3302 |
-
"normalized": false,
|
| 3303 |
-
"rstrip": false,
|
| 3304 |
-
"single_word": false,
|
| 3305 |
-
"special": true
|
| 3306 |
-
},
|
| 3307 |
-
"261563": {
|
| 3308 |
-
"content": "<dom_formosan_rukai_texts>",
|
| 3309 |
-
"lstrip": false,
|
| 3310 |
-
"normalized": false,
|
| 3311 |
-
"rstrip": false,
|
| 3312 |
-
"single_word": false,
|
| 3313 |
-
"special": true
|
| 3314 |
-
},
|
| 3315 |
-
"261564": {
|
| 3316 |
-
"content": "<dom_formosan_rukai_zeitoun_saying>",
|
| 3317 |
-
"lstrip": false,
|
| 3318 |
-
"normalized": false,
|
| 3319 |
-
"rstrip": false,
|
| 3320 |
-
"single_word": false,
|
| 3321 |
-
"special": true
|
| 3322 |
-
},
|
| 3323 |
-
"261565": {
|
| 3324 |
-
"content": "<dom_formosan_sakizaya_affixes>",
|
| 3325 |
-
"lstrip": false,
|
| 3326 |
-
"normalized": false,
|
| 3327 |
-
"rstrip": false,
|
| 3328 |
-
"single_word": false,
|
| 3329 |
-
"special": true
|
| 3330 |
-
},
|
| 3331 |
-
"261566": {
|
| 3332 |
-
"content": "<dom_formosan_schetelig_mittheilungen_uber_die_sprach>",
|
| 3333 |
-
"lstrip": false,
|
| 3334 |
-
"normalized": false,
|
| 3335 |
-
"rstrip": false,
|
| 3336 |
-
"single_word": false,
|
| 3337 |
-
"special": true
|
| 3338 |
-
},
|
| 3339 |
-
"261567": {
|
| 3340 |
-
"content": "<dom_formosan_seals>",
|
| 3341 |
-
"lstrip": false,
|
| 3342 |
-
"normalized": false,
|
| 3343 |
-
"rstrip": false,
|
| 3344 |
-
"single_word": false,
|
| 3345 |
-
"special": true
|
| 3346 |
-
},
|
| 3347 |
-
"261568": {
|
| 3348 |
-
"content": "<dom_formosan_seediq_zhang_reference_grammar>",
|
| 3349 |
-
"lstrip": false,
|
| 3350 |
-
"normalized": false,
|
| 3351 |
-
"rstrip": false,
|
| 3352 |
-
"single_word": false,
|
| 3353 |
-
"special": true
|
| 3354 |
-
},
|
| 3355 |
-
"261569": {
|
| 3356 |
-
"content": "<dom_formosan_shigeru_tsuchida_and_isidore_dyen_proto>",
|
| 3357 |
-
"lstrip": false,
|
| 3358 |
-
"normalized": false,
|
| 3359 |
-
"rstrip": false,
|
| 3360 |
-
"single_word": false,
|
| 3361 |
-
"special": true
|
| 3362 |
-
},
|
| 3363 |
-
"261570": {
|
| 3364 |
-
"content": "<dom_formosan_shigeru_tsuchida_kanakanavu_texts>",
|
| 3365 |
-
"lstrip": false,
|
| 3366 |
-
"normalized": false,
|
| 3367 |
-
"rstrip": false,
|
| 3368 |
-
"single_word": false,
|
| 3369 |
-
"special": true
|
| 3370 |
-
},
|
| 3371 |
-
"261571": {
|
| 3372 |
-
"content": "<dom_formosan_shigeru_tsuchida_preliminary_reports_on>",
|
| 3373 |
-
"lstrip": false,
|
| 3374 |
-
"normalized": false,
|
| 3375 |
-
"rstrip": false,
|
| 3376 |
-
"single_word": false,
|
| 3377 |
-
"special": true
|
| 3378 |
-
},
|
| 3379 |
-
"261572": {
|
| 3380 |
-
"content": "<dom_formosan_shigeru_tsuchida_reconstruction_proto_t>",
|
| 3381 |
-
"lstrip": false,
|
| 3382 |
-
"normalized": false,
|
| 3383 |
-
"rstrip": false,
|
| 3384 |
-
"single_word": false,
|
| 3385 |
-
"special": true
|
| 3386 |
-
},
|
| 3387 |
-
"261573": {
|
| 3388 |
-
"content": "<dom_formosan_shih_chi_stella_yeh_stress_and_quantity>",
|
| 3389 |
-
"lstrip": false,
|
| 3390 |
-
"normalized": false,
|
| 3391 |
-
"rstrip": false,
|
| 3392 |
-
"single_word": false,
|
| 3393 |
-
"special": true
|
| 3394 |
-
},
|
| 3395 |
-
"261574": {
|
| 3396 |
-
"content": "<dom_formosan_shih_rukai_adverbial>",
|
| 3397 |
-
"lstrip": false,
|
| 3398 |
-
"normalized": false,
|
| 3399 |
-
"rstrip": false,
|
| 3400 |
-
"single_word": false,
|
| 3401 |
-
"special": true
|
| 3402 |
-
},
|
| 3403 |
-
"261575": {
|
| 3404 |
-
"content": "<dom_formosan_sihwei_chen_and_haowen_jiang_ways_of_ta>",
|
| 3405 |
-
"lstrip": false,
|
| 3406 |
-
"normalized": false,
|
| 3407 |
-
"rstrip": false,
|
| 3408 |
-
"single_word": false,
|
| 3409 |
-
"special": true
|
| 3410 |
-
},
|
| 3411 |
-
"261576": {
|
| 3412 |
-
"content": "<dom_formosan_sihwei_chen_lexical_aspect_atayal>",
|
| 3413 |
-
"lstrip": false,
|
| 3414 |
-
"normalized": false,
|
| 3415 |
-
"rstrip": false,
|
| 3416 |
-
"single_word": false,
|
| 3417 |
-
"special": true
|
| 3418 |
-
},
|
| 3419 |
-
"261577": {
|
| 3420 |
-
"content": "<dom_formosan_soren_egerod_statement_atayal_phonology>",
|
| 3421 |
-
"lstrip": false,
|
| 3422 |
-
"normalized": false,
|
| 3423 |
-
"rstrip": false,
|
| 3424 |
-
"single_word": false,
|
| 3425 |
-
"special": true
|
| 3426 |
-
},
|
| 3427 |
-
"261578": {
|
| 3428 |
-
"content": "<dom_formosan_soren_egerod_verb_inflection_atayal>",
|
| 3429 |
-
"lstrip": false,
|
| 3430 |
-
"normalized": false,
|
| 3431 |
-
"rstrip": false,
|
| 3432 |
-
"single_word": false,
|
| 3433 |
-
"special": true
|
| 3434 |
-
},
|
| 3435 |
-
"261579": {
|
| 3436 |
-
"content": "<dom_formosan_stacy_teng_malcom_ross_is_puyuma_primar>",
|
| 3437 |
-
"lstrip": false,
|
| 3438 |
-
"normalized": false,
|
| 3439 |
-
"rstrip": false,
|
| 3440 |
-
"single_word": false,
|
| 3441 |
-
"special": true
|
| 3442 |
-
},
|
| 3443 |
-
"261580": {
|
| 3444 |
-
"content": "<dom_formosan_stacy_wan_tin_huang_functions_yami_verb>",
|
| 3445 |
-
"lstrip": false,
|
| 3446 |
-
"normalized": false,
|
| 3447 |
-
"rstrip": false,
|
| 3448 |
-
"single_word": false,
|
| 3449 |
-
"special": true
|
| 3450 |
-
},
|
| 3451 |
-
"261581": {
|
| 3452 |
-
"content": "<dom_formosan_sung_kuo_descriptive_comparative_constr>",
|
| 3453 |
-
"lstrip": false,
|
| 3454 |
-
"normalized": false,
|
| 3455 |
-
"rstrip": false,
|
| 3456 |
-
"single_word": false,
|
| 3457 |
-
"special": true
|
| 3458 |
-
},
|
| 3459 |
-
"261582": {
|
| 3460 |
-
"content": "<dom_formosan_taoshan_elementary_school_atelier_hui_k>",
|
| 3461 |
-
"lstrip": false,
|
| 3462 |
-
"normalized": false,
|
| 3463 |
-
"rstrip": false,
|
| 3464 |
-
"single_word": false,
|
| 3465 |
-
"special": true
|
| 3466 |
-
},
|
| 3467 |
-
"261583": {
|
| 3468 |
-
"content": "<dom_formosan_teresa_m_chen_verbal_construction_and_v>",
|
| 3469 |
-
"lstrip": false,
|
| 3470 |
-
"normalized": false,
|
| 3471 |
-
"rstrip": false,
|
| 3472 |
-
"single_word": false,
|
| 3473 |
-
"special": true
|
| 3474 |
-
},
|
| 3475 |
-
"261584": {
|
| 3476 |
-
"content": "<dom_formosan_ting_chi_wei_parallelism_in_amis_sluici>",
|
| 3477 |
-
"lstrip": false,
|
| 3478 |
-
"normalized": false,
|
| 3479 |
-
"rstrip": false,
|
| 3480 |
-
"single_word": false,
|
| 3481 |
-
"special": true
|
| 3482 |
-
},
|
| 3483 |
-
"261585": {
|
| 3484 |
-
"content": "<dom_formosan_tingchun_chen_successive_cyclic_case_as>",
|
| 3485 |
-
"lstrip": false,
|
| 3486 |
-
"normalized": false,
|
| 3487 |
-
"rstrip": false,
|
| 3488 |
-
"single_word": false,
|
| 3489 |
-
"special": true
|
| 3490 |
-
},
|
| 3491 |
-
"261586": {
|
| 3492 |
-
"content": "<dom_formosan_truku_lowking_demonstratives>",
|
| 3493 |
-
"lstrip": false,
|
| 3494 |
-
"normalized": false,
|
| 3495 |
-
"rstrip": false,
|
| 3496 |
-
"single_word": false,
|
| 3497 |
-
"special": true
|
| 3498 |
-
},
|
| 3499 |
-
"261587": {
|
| 3500 |
-
"content": "<dom_formosan_tsai_hsui_liu_complementation_three_lan>",
|
| 3501 |
-
"lstrip": false,
|
| 3502 |
-
"normalized": false,
|
| 3503 |
-
"rstrip": false,
|
| 3504 |
-
"single_word": false,
|
| 3505 |
-
"special": true
|
| 3506 |
-
},
|
| 3507 |
-
"261588": {
|
| 3508 |
-
"content": "<dom_formosan_tsai_wei_tien_dylan_conjunctive_reducti>",
|
| 3509 |
-
"lstrip": false,
|
| 3510 |
-
"normalized": false,
|
| 3511 |
-
"rstrip": false,
|
| 3512 |
-
"single_word": false,
|
| 3513 |
-
"special": true
|
| 3514 |
-
},
|
| 3515 |
-
"261589": {
|
| 3516 |
-
"content": "<dom_formosan_tsou_descriptive_study>",
|
| 3517 |
-
"lstrip": false,
|
| 3518 |
-
"normalized": false,
|
| 3519 |
-
"rstrip": false,
|
| 3520 |
-
"single_word": false,
|
| 3521 |
-
"special": true
|
| 3522 |
-
},
|
| 3523 |
-
"261590": {
|
| 3524 |
-
"content": "<dom_formosan_tsukida_naomi_verb_classification_amis>",
|
| 3525 |
-
"lstrip": false,
|
| 3526 |
-
"normalized": false,
|
| 3527 |
-
"rstrip": false,
|
| 3528 |
-
"single_word": false,
|
| 3529 |
-
"special": true
|
| 3530 |
-
},
|
| 3531 |
-
"261591": {
|
| 3532 |
-
"content": "<dom_formosan_tu_wen_chiu_a_synchronic_classification>",
|
| 3533 |
-
"lstrip": false,
|
| 3534 |
-
"normalized": false,
|
| 3535 |
-
"rstrip": false,
|
| 3536 |
-
"single_word": false,
|
| 3537 |
-
"special": true
|
| 3538 |
-
},
|
| 3539 |
-
"261592": {
|
| 3540 |
-
"content": "<dom_formosan_tung_tsuchida_ting_li_pan_saaroa_texts>",
|
| 3541 |
-
"lstrip": false,
|
| 3542 |
-
"normalized": false,
|
| 3543 |
-
"rstrip": false,
|
| 3544 |
-
"single_word": false,
|
| 3545 |
-
"special": true
|
| 3546 |
-
},
|
| 3547 |
-
"261593": {
|
| 3548 |
-
"content": "<dom_formosan_victoria_rau_yi_hsin_wu_and_meng_chien>",
|
| 3549 |
-
"lstrip": false,
|
| 3550 |
-
"normalized": false,
|
| 3551 |
-
"rstrip": false,
|
| 3552 |
-
"single_word": false,
|
| 3553 |
-
"special": true
|
| 3554 |
-
},
|
| 3555 |
-
"261594": {
|
| 3556 |
-
"content": "<dom_formosan_wei_huilin_liu_social_structure_yami>",
|
| 3557 |
-
"lstrip": false,
|
| 3558 |
-
"normalized": false,
|
| 3559 |
-
"rstrip": false,
|
| 3560 |
-
"single_word": false,
|
| 3561 |
-
"special": true
|
| 3562 |
-
},
|
| 3563 |
-
"261595": {
|
| 3564 |
-
"content": "<dom_formosan_wei_matri_clan_lineage_system_ami>",
|
| 3565 |
-
"lstrip": false,
|
| 3566 |
-
"normalized": false,
|
| 3567 |
-
"rstrip": false,
|
| 3568 |
-
"single_word": false,
|
| 3569 |
-
"special": true
|
| 3570 |
-
},
|
| 3571 |
-
"261596": {
|
| 3572 |
-
"content": "<dom_formosan_wei_tien_tsai_subjecthood_temporal_adju>",
|
| 3573 |
-
"lstrip": false,
|
| 3574 |
-
"normalized": false,
|
| 3575 |
-
"rstrip": false,
|
| 3576 |
-
"single_word": false,
|
| 3577 |
-
"special": true
|
| 3578 |
-
},
|
| 3579 |
-
"261597": {
|
| 3580 |
-
"content": "<dom_formosan_wiedfelt_formosan_aborigines_atayal>",
|
| 3581 |
-
"lstrip": false,
|
| 3582 |
-
"normalized": false,
|
| 3583 |
-
"rstrip": false,
|
| 3584 |
-
"single_word": false,
|
| 3585 |
-
"special": true
|
| 3586 |
-
},
|
| 3587 |
-
"261598": {
|
| 3588 |
-
"content": "<dom_formosan_wilang_yutas_videos>",
|
| 3589 |
-
"lstrip": false,
|
| 3590 |
-
"normalized": false,
|
| 3591 |
-
"rstrip": false,
|
| 3592 |
-
"single_word": false,
|
| 3593 |
-
"special": true
|
| 3594 |
-
},
|
| 3595 |
-
"261599": {
|
| 3596 |
-
"content": "<dom_formosan_wu_chunming_adverbials_in_paiwan>",
|
| 3597 |
-
"lstrip": false,
|
| 3598 |
-
"normalized": false,
|
| 3599 |
-
"rstrip": false,
|
| 3600 |
-
"single_word": false,
|
| 3601 |
-
"special": true
|
| 3602 |
-
},
|
| 3603 |
-
"261600": {
|
| 3604 |
-
"content": "<dom_formosan_xie_fuhui_introduction_kavalan_grammar>",
|
| 3605 |
-
"lstrip": false,
|
| 3606 |
-
"normalized": false,
|
| 3607 |
-
"rstrip": false,
|
| 3608 |
-
"single_word": false,
|
| 3609 |
-
"special": true
|
| 3610 |
-
},
|
| 3611 |
-
"261601": {
|
| 3612 |
-
"content": "<dom_formosan_yedda_palemeq_blog>",
|
| 3613 |
-
"lstrip": false,
|
| 3614 |
-
"normalized": false,
|
| 3615 |
-
"rstrip": false,
|
| 3616 |
-
"single_word": false,
|
| 3617 |
-
"special": true
|
| 3618 |
-
},
|
| 3619 |
-
"261602": {
|
| 3620 |
-
"content": "<dom_formosan_yeddas_blog>",
|
| 3621 |
-
"lstrip": false,
|
| 3622 |
-
"normalized": false,
|
| 3623 |
-
"rstrip": false,
|
| 3624 |
-
"single_word": false,
|
| 3625 |
-
"special": true
|
| 3626 |
-
},
|
| 3627 |
-
"261603": {
|
| 3628 |
-
"content": "<dom_formosan_yeh_meili_introduction_saisiyat_grammar>",
|
| 3629 |
-
"lstrip": false,
|
| 3630 |
-
"normalized": false,
|
| 3631 |
-
"rstrip": false,
|
| 3632 |
-
"single_word": false,
|
| 3633 |
-
"special": true
|
| 3634 |
-
},
|
| 3635 |
-
"261604": {
|
| 3636 |
-
"content": "<dom_formosan_yi_ming_chou_object_control_saisiyat>",
|
| 3637 |
-
"lstrip": false,
|
| 3638 |
-
"normalized": false,
|
| 3639 |
-
"rstrip": false,
|
| 3640 |
-
"single_word": false,
|
| 3641 |
-
"special": true
|
| 3642 |
-
},
|
| 3643 |
-
"261605": {
|
| 3644 |
-
"content": "<dom_formosan_yi_ting_chen_a_minimalist_approach_to_a>",
|
| 3645 |
-
"lstrip": false,
|
| 3646 |
-
"normalized": false,
|
| 3647 |
-
"rstrip": false,
|
| 3648 |
-
"single_word": false,
|
| 3649 |
-
"special": true
|
| 3650 |
-
},
|
| 3651 |
-
"261606": {
|
| 3652 |
-
"content": "<dom_formosan_yi_ting_chen_amis_left_periphery>",
|
| 3653 |
-
"lstrip": false,
|
| 3654 |
-
"normalized": false,
|
| 3655 |
-
"rstrip": false,
|
| 3656 |
-
"single_word": false,
|
| 3657 |
-
"special": true
|
| 3658 |
-
},
|
| 3659 |
-
"261607": {
|
| 3660 |
-
"content": "<dom_formosan_yi_ting_chen_language_use_code_mixing_a>",
|
| 3661 |
-
"lstrip": false,
|
| 3662 |
-
"normalized": false,
|
| 3663 |
-
"rstrip": false,
|
| 3664 |
-
"single_word": false,
|
| 3665 |
-
"special": true
|
| 3666 |
-
},
|
| 3667 |
-
"261608": {
|
| 3668 |
-
"content": "<dom_formosan_yi_yang_cheng_kanakanavu_word_level_pro>",
|
| 3669 |
-
"lstrip": false,
|
| 3670 |
-
"normalized": false,
|
| 3671 |
-
"rstrip": false,
|
| 3672 |
-
"single_word": false,
|
| 3673 |
-
"special": true
|
| 3674 |
-
},
|
| 3675 |
-
"261609": {
|
| 3676 |
-
"content": "<dom_formosan_yi_yang_cheng_tense_aspect_agent_markin>",
|
| 3677 |
-
"lstrip": false,
|
| 3678 |
-
"normalized": false,
|
| 3679 |
-
"rstrip": false,
|
| 3680 |
-
"single_word": false,
|
| 3681 |
-
"special": true
|
| 3682 |
-
},
|
| 3683 |
-
"261610": {
|
| 3684 |
-
"content": "<dom_formosan_yoshiro_nihira_bunun_vocabulary>",
|
| 3685 |
-
"lstrip": false,
|
| 3686 |
-
"normalized": false,
|
| 3687 |
-
"rstrip": false,
|
| 3688 |
-
"single_word": false,
|
| 3689 |
-
"special": true
|
| 3690 |
-
},
|
| 3691 |
-
"261611": {
|
| 3692 |
-
"content": "<dom_formosan_yuehchien_chien_the_lexical_system_of_y>",
|
| 3693 |
-
"lstrip": false,
|
| 3694 |
-
"normalized": false,
|
| 3695 |
-
"rstrip": false,
|
| 3696 |
-
"single_word": false,
|
| 3697 |
-
"special": true
|
| 3698 |
-
},
|
| 3699 |
-
"261612": {
|
| 3700 |
-
"content": "<dom_formosan_yukihiro_yamada_ying_chu_liao_phonology>",
|
| 3701 |
-
"lstrip": false,
|
| 3702 |
-
"normalized": false,
|
| 3703 |
-
"rstrip": false,
|
| 3704 |
-
"single_word": false,
|
| 3705 |
-
"special": true
|
| 3706 |
-
},
|
| 3707 |
-
"261613": {
|
| 3708 |
-
"content": "<dom_formosan_zeng_shifen_reduplication_affixation_pa>",
|
| 3709 |
-
"lstrip": false,
|
| 3710 |
-
"normalized": false,
|
| 3711 |
-
"rstrip": false,
|
| 3712 |
-
"single_word": false,
|
| 3713 |
-
"special": true
|
| 3714 |
-
},
|
| 3715 |
-
"261614": {
|
| 3716 |
-
"content": "<dom_formosan_zhan_sujuan_taiwan_indigenous_peoples_h>",
|
| 3717 |
-
"lstrip": false,
|
| 3718 |
-
"normalized": false,
|
| 3719 |
-
"rstrip": false,
|
| 3720 |
-
"single_word": false,
|
| 3721 |
-
"special": true
|
| 3722 |
-
},
|
| 3723 |
-
"261615": {
|
| 3724 |
-
"content": "<dom_formosan_zhang_xiujuan_introduction_paiwan_gramm>",
|
| 3725 |
-
"lstrip": false,
|
| 3726 |
-
"normalized": false,
|
| 3727 |
-
"rstrip": false,
|
| 3728 |
-
"single_word": false,
|
| 3729 |
-
"special": true
|
| 3730 |
-
},
|
| 3731 |
-
"261616": {
|
| 3732 |
-
"content": "<dom_formosan_zhang_yongli_pan_jiarong_introduction_t>",
|
| 3733 |
-
"lstrip": false,
|
| 3734 |
-
"normalized": false,
|
| 3735 |
-
"rstrip": false,
|
| 3736 |
-
"single_word": false,
|
| 3737 |
-
"special": true
|
| 3738 |
-
},
|
| 3739 |
-
"261617": {
|
| 3740 |
-
"content": "<dom_formosan_zhao_shanhe_li_taiyuan_zhu_qingyi_abori>",
|
| 3741 |
-
"lstrip": false,
|
| 3742 |
-
"normalized": false,
|
| 3743 |
-
"rstrip": false,
|
| 3744 |
-
"single_word": false,
|
| 3745 |
-
"special": true
|
| 3746 |
-
},
|
| 3747 |
-
"261618": {
|
| 3748 |
-
"content": "<dom_formosan_zheng_acl_2024>",
|
| 3749 |
-
"lstrip": false,
|
| 3750 |
-
"normalized": false,
|
| 3751 |
-
"rstrip": false,
|
| 3752 |
-
"single_word": false,
|
| 3753 |
-
"special": true
|
| 3754 |
-
},
|
| 3755 |
-
"261619": {
|
| 3756 |
-
"content": "<dom_formosan_zheng_data>",
|
| 3757 |
-
"lstrip": false,
|
| 3758 |
-
"normalized": false,
|
| 3759 |
-
"rstrip": false,
|
| 3760 |
-
"single_word": false,
|
| 3761 |
-
"special": true
|
| 3762 |
-
},
|
| 3763 |
-
"261620": {
|
| 3764 |
-
"content": "<dom_formosan_zheng_yumei_zhu_qingyi_bo_hongming_abor>",
|
| 3765 |
-
"lstrip": false,
|
| 3766 |
-
"normalized": false,
|
| 3767 |
-
"rstrip": false,
|
| 3768 |
-
"single_word": false,
|
| 3769 |
-
"special": true
|
| 3770 |
-
},
|
| 3771 |
-
"261621": {
|
| 3772 |
-
"content": "<dom_learning_vocab>",
|
| 3773 |
-
"lstrip": false,
|
| 3774 |
-
"normalized": false,
|
| 3775 |
-
"rstrip": false,
|
| 3776 |
-
"single_word": false,
|
| 3777 |
-
"special": true
|
| 3778 |
-
},
|
| 3779 |
-
"261622": {
|
| 3780 |
-
"content": "<dom_nine_level>",
|
| 3781 |
-
"lstrip": false,
|
| 3782 |
-
"normalized": false,
|
| 3783 |
-
"rstrip": false,
|
| 3784 |
-
"single_word": false,
|
| 3785 |
-
"special": true
|
| 3786 |
-
},
|
| 3787 |
-
"261623": {
|
| 3788 |
-
"content": "<dom_ntu>",
|
| 3789 |
-
"lstrip": false,
|
| 3790 |
-
"normalized": false,
|
| 3791 |
-
"rstrip": false,
|
| 3792 |
-
"single_word": false,
|
| 3793 |
-
"special": true
|
| 3794 |
-
},
|
| 3795 |
-
"261624": {
|
| 3796 |
-
"content": "<dom_picture_book>",
|
| 3797 |
-
"lstrip": false,
|
| 3798 |
-
"normalized": false,
|
| 3799 |
-
"rstrip": false,
|
| 3800 |
-
"single_word": false,
|
| 3801 |
-
"special": true
|
| 3802 |
-
},
|
| 3803 |
-
"261625": {
|
| 3804 |
-
"content": "<dom_picture_story>",
|
| 3805 |
-
"lstrip": false,
|
| 3806 |
-
"normalized": false,
|
| 3807 |
-
"rstrip": false,
|
| 3808 |
-
"single_word": false,
|
| 3809 |
-
"special": true
|
| 3810 |
-
},
|
| 3811 |
-
"261626": {
|
| 3812 |
-
"content": "<dom_presidential_apology>",
|
| 3813 |
-
"lstrip": false,
|
| 3814 |
-
"normalized": false,
|
| 3815 |
-
"rstrip": false,
|
| 3816 |
-
"single_word": false,
|
| 3817 |
-
"special": true
|
| 3818 |
-
},
|
| 3819 |
-
"261627": {
|
| 3820 |
-
"content": "<dom_reading_writing>",
|
| 3821 |
-
"lstrip": false,
|
| 3822 |
-
"normalized": false,
|
| 3823 |
-
"rstrip": false,
|
| 3824 |
-
"single_word": false,
|
| 3825 |
-
"special": true
|
| 3826 |
-
},
|
| 3827 |
-
"261628": {
|
| 3828 |
-
"content": "<dom_unknown>",
|
| 3829 |
-
"lstrip": false,
|
| 3830 |
-
"normalized": false,
|
| 3831 |
-
"rstrip": false,
|
| 3832 |
-
"single_word": false,
|
| 3833 |
-
"special": true
|
| 3834 |
-
},
|
| 3835 |
-
"261629": {
|
| 3836 |
-
"content": "<dom_youtube>",
|
| 3837 |
-
"lstrip": false,
|
| 3838 |
-
"normalized": false,
|
| 3839 |
-
"rstrip": false,
|
| 3840 |
-
"single_word": false,
|
| 3841 |
-
"special": true
|
| 3842 |
-
},
|
| 3843 |
-
"261630": {
|
| 3844 |
-
"content": "<src_ami>",
|
| 3845 |
-
"lstrip": false,
|
| 3846 |
-
"normalized": false,
|
| 3847 |
-
"rstrip": false,
|
| 3848 |
-
"single_word": false,
|
| 3849 |
-
"special": true
|
| 3850 |
-
},
|
| 3851 |
-
"261631": {
|
| 3852 |
-
"content": "<src_bnn>",
|
| 3853 |
-
"lstrip": false,
|
| 3854 |
-
"normalized": false,
|
| 3855 |
-
"rstrip": false,
|
| 3856 |
-
"single_word": false,
|
| 3857 |
-
"special": true
|
| 3858 |
-
},
|
| 3859 |
-
"261632": {
|
| 3860 |
-
"content": "<src_ckv>",
|
| 3861 |
-
"lstrip": false,
|
| 3862 |
-
"normalized": false,
|
| 3863 |
-
"rstrip": false,
|
| 3864 |
-
"single_word": false,
|
| 3865 |
-
"special": true
|
| 3866 |
-
},
|
| 3867 |
-
"261633": {
|
| 3868 |
-
"content": "<src_dru>",
|
| 3869 |
-
"lstrip": false,
|
| 3870 |
-
"normalized": false,
|
| 3871 |
-
"rstrip": false,
|
| 3872 |
-
"single_word": false,
|
| 3873 |
-
"special": true
|
| 3874 |
-
},
|
| 3875 |
-
"261634": {
|
| 3876 |
-
"content": "<src_eng>",
|
| 3877 |
-
"lstrip": false,
|
| 3878 |
-
"normalized": false,
|
| 3879 |
-
"rstrip": false,
|
| 3880 |
-
"single_word": false,
|
| 3881 |
-
"special": true
|
| 3882 |
-
},
|
| 3883 |
-
"261635": {
|
| 3884 |
-
"content": "<src_pwn>",
|
| 3885 |
-
"lstrip": false,
|
| 3886 |
-
"normalized": false,
|
| 3887 |
-
"rstrip": false,
|
| 3888 |
-
"single_word": false,
|
| 3889 |
-
"special": true
|
| 3890 |
-
},
|
| 3891 |
-
"261636": {
|
| 3892 |
-
"content": "<src_pyu>",
|
| 3893 |
-
"lstrip": false,
|
| 3894 |
-
"normalized": false,
|
| 3895 |
-
"rstrip": false,
|
| 3896 |
-
"single_word": false,
|
| 3897 |
-
"special": true
|
| 3898 |
-
},
|
| 3899 |
-
"261637": {
|
| 3900 |
-
"content": "<src_ssf>",
|
| 3901 |
-
"lstrip": false,
|
| 3902 |
-
"normalized": false,
|
| 3903 |
-
"rstrip": false,
|
| 3904 |
-
"single_word": false,
|
| 3905 |
-
"special": true
|
| 3906 |
-
},
|
| 3907 |
-
"261638": {
|
| 3908 |
-
"content": "<src_sxr>",
|
| 3909 |
-
"lstrip": false,
|
| 3910 |
-
"normalized": false,
|
| 3911 |
-
"rstrip": false,
|
| 3912 |
-
"single_word": false,
|
| 3913 |
-
"special": true
|
| 3914 |
-
},
|
| 3915 |
-
"261639": {
|
| 3916 |
-
"content": "<src_szy>",
|
| 3917 |
-
"lstrip": false,
|
| 3918 |
-
"normalized": false,
|
| 3919 |
-
"rstrip": false,
|
| 3920 |
-
"single_word": false,
|
| 3921 |
-
"special": true
|
| 3922 |
-
},
|
| 3923 |
-
"261640": {
|
| 3924 |
-
"content": "<src_tao>",
|
| 3925 |
-
"lstrip": false,
|
| 3926 |
-
"normalized": false,
|
| 3927 |
-
"rstrip": false,
|
| 3928 |
-
"single_word": false,
|
| 3929 |
-
"special": true
|
| 3930 |
-
},
|
| 3931 |
-
"261641": {
|
| 3932 |
-
"content": "<src_tay>",
|
| 3933 |
-
"lstrip": false,
|
| 3934 |
-
"normalized": false,
|
| 3935 |
-
"rstrip": false,
|
| 3936 |
-
"single_word": false,
|
| 3937 |
-
"special": true
|
| 3938 |
-
},
|
| 3939 |
-
"261642": {
|
| 3940 |
-
"content": "<src_trv>",
|
| 3941 |
-
"lstrip": false,
|
| 3942 |
-
"normalized": false,
|
| 3943 |
-
"rstrip": false,
|
| 3944 |
-
"single_word": false,
|
| 3945 |
-
"special": true
|
| 3946 |
-
},
|
| 3947 |
-
"261643": {
|
| 3948 |
-
"content": "<src_tsu>",
|
| 3949 |
-
"lstrip": false,
|
| 3950 |
-
"normalized": false,
|
| 3951 |
-
"rstrip": false,
|
| 3952 |
-
"single_word": false,
|
| 3953 |
-
"special": true
|
| 3954 |
-
},
|
| 3955 |
-
"261644": {
|
| 3956 |
-
"content": "<src_xnb>",
|
| 3957 |
-
"lstrip": false,
|
| 3958 |
-
"normalized": false,
|
| 3959 |
-
"rstrip": false,
|
| 3960 |
-
"single_word": false,
|
| 3961 |
-
"special": true
|
| 3962 |
-
},
|
| 3963 |
-
"261645": {
|
| 3964 |
-
"content": "<src_xsy>",
|
| 3965 |
-
"lstrip": false,
|
| 3966 |
-
"normalized": false,
|
| 3967 |
-
"rstrip": false,
|
| 3968 |
-
"single_word": false,
|
| 3969 |
-
"special": true
|
| 3970 |
-
},
|
| 3971 |
-
"261646": {
|
| 3972 |
-
"content": "<src_zh>",
|
| 3973 |
-
"lstrip": false,
|
| 3974 |
-
"normalized": false,
|
| 3975 |
-
"rstrip": false,
|
| 3976 |
-
"single_word": false,
|
| 3977 |
-
"special": true
|
| 3978 |
-
},
|
| 3979 |
-
"261647": {
|
| 3980 |
-
"content": "<to_ami>",
|
| 3981 |
-
"lstrip": false,
|
| 3982 |
-
"normalized": false,
|
| 3983 |
-
"rstrip": false,
|
| 3984 |
-
"single_word": false,
|
| 3985 |
-
"special": true
|
| 3986 |
-
},
|
| 3987 |
-
"261648": {
|
| 3988 |
-
"content": "<to_bnn>",
|
| 3989 |
-
"lstrip": false,
|
| 3990 |
-
"normalized": false,
|
| 3991 |
-
"rstrip": false,
|
| 3992 |
-
"single_word": false,
|
| 3993 |
-
"special": true
|
| 3994 |
-
},
|
| 3995 |
-
"261649": {
|
| 3996 |
-
"content": "<to_ckv>",
|
| 3997 |
-
"lstrip": false,
|
| 3998 |
-
"normalized": false,
|
| 3999 |
-
"rstrip": false,
|
| 4000 |
-
"single_word": false,
|
| 4001 |
-
"special": true
|
| 4002 |
-
},
|
| 4003 |
-
"261650": {
|
| 4004 |
-
"content": "<to_dru>",
|
| 4005 |
-
"lstrip": false,
|
| 4006 |
-
"normalized": false,
|
| 4007 |
-
"rstrip": false,
|
| 4008 |
-
"single_word": false,
|
| 4009 |
-
"special": true
|
| 4010 |
-
},
|
| 4011 |
-
"261651": {
|
| 4012 |
-
"content": "<to_eng>",
|
| 4013 |
-
"lstrip": false,
|
| 4014 |
-
"normalized": false,
|
| 4015 |
-
"rstrip": false,
|
| 4016 |
-
"single_word": false,
|
| 4017 |
-
"special": true
|
| 4018 |
-
},
|
| 4019 |
-
"261652": {
|
| 4020 |
-
"content": "<to_pwn>",
|
| 4021 |
-
"lstrip": false,
|
| 4022 |
-
"normalized": false,
|
| 4023 |
-
"rstrip": false,
|
| 4024 |
-
"single_word": false,
|
| 4025 |
-
"special": true
|
| 4026 |
-
},
|
| 4027 |
-
"261653": {
|
| 4028 |
-
"content": "<to_pyu>",
|
| 4029 |
-
"lstrip": false,
|
| 4030 |
-
"normalized": false,
|
| 4031 |
-
"rstrip": false,
|
| 4032 |
-
"single_word": false,
|
| 4033 |
-
"special": true
|
| 4034 |
-
},
|
| 4035 |
-
"261654": {
|
| 4036 |
-
"content": "<to_ssf>",
|
| 4037 |
-
"lstrip": false,
|
| 4038 |
-
"normalized": false,
|
| 4039 |
-
"rstrip": false,
|
| 4040 |
-
"single_word": false,
|
| 4041 |
-
"special": true
|
| 4042 |
-
},
|
| 4043 |
-
"261655": {
|
| 4044 |
-
"content": "<to_sxr>",
|
| 4045 |
-
"lstrip": false,
|
| 4046 |
-
"normalized": false,
|
| 4047 |
-
"rstrip": false,
|
| 4048 |
-
"single_word": false,
|
| 4049 |
-
"special": true
|
| 4050 |
-
},
|
| 4051 |
-
"261656": {
|
| 4052 |
-
"content": "<to_szy>",
|
| 4053 |
-
"lstrip": false,
|
| 4054 |
-
"normalized": false,
|
| 4055 |
-
"rstrip": false,
|
| 4056 |
-
"single_word": false,
|
| 4057 |
-
"special": true
|
| 4058 |
-
},
|
| 4059 |
-
"261657": {
|
| 4060 |
-
"content": "<to_tao>",
|
| 4061 |
-
"lstrip": false,
|
| 4062 |
-
"normalized": false,
|
| 4063 |
-
"rstrip": false,
|
| 4064 |
-
"single_word": false,
|
| 4065 |
-
"special": true
|
| 4066 |
-
},
|
| 4067 |
-
"261658": {
|
| 4068 |
-
"content": "<to_tay>",
|
| 4069 |
-
"lstrip": false,
|
| 4070 |
-
"normalized": false,
|
| 4071 |
-
"rstrip": false,
|
| 4072 |
-
"single_word": false,
|
| 4073 |
-
"special": true
|
| 4074 |
-
},
|
| 4075 |
-
"261659": {
|
| 4076 |
-
"content": "<to_trv>",
|
| 4077 |
-
"lstrip": false,
|
| 4078 |
-
"normalized": false,
|
| 4079 |
-
"rstrip": false,
|
| 4080 |
-
"single_word": false,
|
| 4081 |
-
"special": true
|
| 4082 |
-
},
|
| 4083 |
-
"261660": {
|
| 4084 |
-
"content": "<to_tsu>",
|
| 4085 |
-
"lstrip": false,
|
| 4086 |
-
"normalized": false,
|
| 4087 |
-
"rstrip": false,
|
| 4088 |
-
"single_word": false,
|
| 4089 |
-
"special": true
|
| 4090 |
-
},
|
| 4091 |
-
"261661": {
|
| 4092 |
-
"content": "<to_xnb>",
|
| 4093 |
-
"lstrip": false,
|
| 4094 |
-
"normalized": false,
|
| 4095 |
-
"rstrip": false,
|
| 4096 |
-
"single_word": false,
|
| 4097 |
-
"special": true
|
| 4098 |
-
},
|
| 4099 |
-
"261662": {
|
| 4100 |
-
"content": "<to_xsy>",
|
| 4101 |
-
"lstrip": false,
|
| 4102 |
-
"normalized": false,
|
| 4103 |
-
"rstrip": false,
|
| 4104 |
-
"single_word": false,
|
| 4105 |
-
"special": true
|
| 4106 |
-
},
|
| 4107 |
-
"261663": {
|
| 4108 |
"content": "<to_zh>",
|
| 4109 |
"lstrip": false,
|
| 4110 |
"normalized": false,
|
|
@@ -4373,222 +2717,15 @@
|
|
| 4373 |
"<dialect_zeaol>",
|
| 4374 |
"<dialect_zhiben>",
|
| 4375 |
"<dialect_zhuoqun>",
|
| 4376 |
-
"<
|
| 4377 |
"<dom_culture>",
|
| 4378 |
"<dom_dictionary>",
|
| 4379 |
-
"<
|
| 4380 |
-
"<
|
| 4381 |
-
"<
|
| 4382 |
-
"<
|
| 4383 |
-
"<
|
| 4384 |
-
"<dom_formosan_amis_adversative_constructions>",
|
| 4385 |
-
"<dom_formosan_amis_huang_english_phonology_grammar>",
|
| 4386 |
-
"<dom_formosan_amis_kavalan_lin_interrogative_verbs>",
|
| 4387 |
-
"<dom_formosan_amis_kuo_sung_comparative_constructions>",
|
| 4388 |
-
"<dom_formosan_amis_myths_and_customs>",
|
| 4389 |
-
"<dom_formosan_amis_pa_verbs>",
|
| 4390 |
-
"<dom_formosan_amis_serial_verb_constructions>",
|
| 4391 |
-
"<dom_formosan_amis_tung_chiou>",
|
| 4392 |
-
"<dom_formosan_amy_lee_body_part_nomenclature_seediq>",
|
| 4393 |
-
"<dom_formosan_anna_hsiou_chuan_chang_reference_gramma>",
|
| 4394 |
-
"<dom_formosan_anton_quack_puyuma_pulingaw>",
|
| 4395 |
-
"<dom_formosan_apay_tang_anger_happiness_truku_seediq>",
|
| 4396 |
-
"<dom_formosan_asai_sedik_language>",
|
| 4397 |
-
"<dom_formosan_atayal_you_nao_savak_raxayal>",
|
| 4398 |
-
"<dom_formosan_bien_daniel_chiang_house_social_hierarc>",
|
| 4399 |
-
"<dom_formosan_boyizhenu_narrative_oral_literature_tap>",
|
| 4400 |
-
"<dom_formosan_bunun_debusser_dissertation>",
|
| 4401 |
-
"<dom_formosan_bunun_topic_focus>",
|
| 4402 |
-
"<dom_formosan_c_douglas_chretien_oceanic_material_in>",
|
| 4403 |
-
"<dom_formosan_catherine_tseng_seediq_atayal_foods_the>",
|
| 4404 |
-
"<dom_formosan_chang_kwo_tan_syncretic_objects_materia>",
|
| 4405 |
-
"<dom_formosan_chaolin_li_motion_verb_grammaticalizati>",
|
| 4406 |
-
"<dom_formosan_chen_fukuda_relabeling_ergative>",
|
| 4407 |
-
"<dom_formosan_chen_fukuda_three_ways_steal>",
|
| 4408 |
-
"<dom_formosan_cheng_sung_modality_kanakanavu>",
|
| 4409 |
-
"<dom_formosan_chi_lu_chen_and_micheal_d_coe_an_invest>",
|
| 4410 |
-
"<dom_formosan_chuming_wu_linking_constructions_mayrin>",
|
| 4411 |
-
"<dom_formosan_chun_mei_chen_comparative_phonology_pai>",
|
| 4412 |
-
"<dom_formosan_chunming_wu_two_types_of_noun_incorpora>",
|
| 4413 |
-
"<dom_formosan_cip_atayal_grammar_overview>",
|
| 4414 |
-
"<dom_formosan_claire_mcgill_a_brief_tayal_vocabulary>",
|
| 4415 |
-
"<dom_formosan_david_blundell_ed_austronesian_taiwan>",
|
| 4416 |
-
"<dom_formosan_dean_johnson_year_clouds_smangus>",
|
| 4417 |
-
"<dom_formosan_der_hwa_victoria_rau_grammar_atayal>",
|
| 4418 |
-
"<dom_formosan_der_hwa_victoria_rau_lexical_similarity>",
|
| 4419 |
-
"<dom_formosan_dong_manv_yami_ode_to_taro>",
|
| 4420 |
-
"<dom_formosan_dong_yi_lin_universal_quantifier_kavala>",
|
| 4421 |
-
"<dom_formosan_dong_yijia_tjuwabar_paiwan_ritual_langu>",
|
| 4422 |
-
"<dom_formosan_dorinda_tsai_hsiu_liu_neutral_imperfect>",
|
| 4423 |
-
"<dom_formosan_ed_torjesen_amis_taiwan_word_list>",
|
| 4424 |
-
"<dom_formosan_egerod_origin_headhunting_atayal_text_v>",
|
| 4425 |
-
"<dom_formosan_egerod_soren_word_order_word_classes_at>",
|
| 4426 |
-
"<dom_formosan_elizabeth_zeitoun_chen_huei_wu_overview>",
|
| 4427 |
-
"<dom_formosan_elizabeth_zeitoun_lillian_huang_anna_ch>",
|
| 4428 |
-
"<dom_formosan_elizabeth_zeitoun_lillian_huang_marie_y>",
|
| 4429 |
-
"<dom_formosan_elizabeth_zeitoun_pronominal_system_man>",
|
| 4430 |
-
"<dom_formosan_elizabeth_zeitoun_squib_dynamic_vs_stat>",
|
| 4431 |
-
"<dom_formosan_epark>",
|
| 4432 |
-
"<dom_formosan_ferrell_taiwan_aboriginal_groups_proble>",
|
| 4433 |
-
"<dom_formosan_george_leroy_shelley_vudai_rukai>",
|
| 4434 |
-
"<dom_formosan_gitbook_translations>",
|
| 4435 |
-
"<dom_formosan_glosbe>",
|
| 4436 |
-
"<dom_formosan_gujing_lin_tsou_serial_verb_constructio>",
|
| 4437 |
-
"<dom_formosan_henry_chang_nominal_aspect_tsou>",
|
| 4438 |
-
"<dom_formosan_henry_chang_tsou_causative_applicative>",
|
| 4439 |
-
"<dom_formosan_henry_y_chang_formosan_speech_act_mood>",
|
| 4440 |
-
"<dom_formosan_ho_dan_phonological_system_butonglu_pai>",
|
| 4441 |
-
"<dom_formosan_holmer_seediq>",
|
| 4442 |
-
"<dom_formosan_hsiu_chuan_liao_transitivity_ergativity>",
|
| 4443 |
-
"<dom_formosan_huang_dongqiu_atayal_bunun_amis_languag>",
|
| 4444 |
-
"<dom_formosan_huang_grammaticalization_squliq_atayal>",
|
| 4445 |
-
"<dom_formosan_huang_hui_chuan_glide_formation_takitud>",
|
| 4446 |
-
"<dom_formosan_huang_mei_chin_atayal_reference_grammar>",
|
| 4447 |
-
"<dom_formosan_hui_chuan_j_huang_syllable_types_in_bun>",
|
| 4448 |
-
"<dom_formosan_hui_shan_lin_squliq_atayal_reduplicatio>",
|
| 4449 |
-
"<dom_formosan_huteson_rukai_survey>",
|
| 4450 |
-
"<dom_formosan_ian_maddieson_and_richard_wright_the_vo>",
|
| 4451 |
-
"<dom_formosan_ilrdf_42_language_practice_word_lists>",
|
| 4452 |
-
"<dom_formosan_ilrdf_tousvusvutu_kita>",
|
| 4453 |
-
"<dom_formosan_indigenous_education_resource_center_ke>",
|
| 4454 |
-
"<dom_formosan_indigenous_language_literary_awards>",
|
| 4455 |
-
"<dom_formosan_isabelle_bril_roots_and_stems_lexical_a>",
|
| 4456 |
-
"<dom_formosan_jian_iwan_guo_qingliu_life_history>",
|
| 4457 |
-
"<dom_formosan_jian_shilang_introduction_thao_grammar>",
|
| 4458 |
-
"<dom_formosan_john_tu_er_wei_notes_on_the_religious_b>",
|
| 4459 |
-
"<dom_formosan_john_u_wolff_the_proto_austronesian_pho>",
|
| 4460 |
-
"<dom_formosan_jonathan_kuo_amis_manner_result_verbs>",
|
| 4461 |
-
"<dom_formosan_josiane_cauquelin_aborigines_taiwan_puy>",
|
| 4462 |
-
"<dom_formosan_joy_wu_clausal_modifiers_in_amis>",
|
| 4463 |
-
"<dom_formosan_joy_wu_verb_classification_case_marking>",
|
| 4464 |
-
"<dom_formosan_kanakanavu_texts>",
|
| 4465 |
-
"<dom_formosan_kavalan_zhang_reference_grammar>",
|
| 4466 |
-
"<dom_formosan_kumu_tapas_tribal_memory_oral_history_w>",
|
| 4467 |
-
"<dom_formosan_kuo_j_c_argument_alternation_and_argume>",
|
| 4468 |
-
"<dom_formosan_lei_shih_family_system_paiwan_at_su_pai>",
|
| 4469 |
-
"<dom_formosan_li_chen_yeh_developing_a_hla_alua_learn>",
|
| 4470 |
-
"<dom_formosan_li_may_sung_budai_rukai_exclamatives>",
|
| 4471 |
-
"<dom_formosan_li_may_sung_clausal_nominalization_buda>",
|
| 4472 |
-
"<dom_formosan_lillian_huang_atayal_participants_cross>",
|
| 4473 |
-
"<dom_formosan_lillian_huang_ergativity_atayal>",
|
| 4474 |
-
"<dom_formosan_liu_manyi_kaskun_ata_matas_i_ki_quaz>",
|
| 4475 |
-
"<dom_formosan_malcom_d_ross_the_history_and_transitiv>",
|
| 4476 |
-
"<dom_formosan_malcom_ross_proto_austronesian_verbal_m>",
|
| 4477 |
-
"<dom_formosan_man_ni_chu_the_measurement_of_final_i_v>",
|
| 4478 |
-
"<dom_formosan_matsuzawa_kazuko_the_social_and_ritual>",
|
| 4479 |
-
"<dom_formosan_maya_yeh_blaq_uv_construction_atayal>",
|
| 4480 |
-
"<dom_formosan_mayumi_oiwa_adverbial_verb_construction>",
|
| 4481 |
-
"<dom_formosan_mayumi_oiwa_bungard_morphology_and_synt>",
|
| 4482 |
-
"<dom_formosan_mayumi_oiwa_possessor_raising_truku_see>",
|
| 4483 |
-
"<dom_formosan_mei_chin_huang_verb_classification_in_m>",
|
| 4484 |
-
"<dom_formosan_melissa_shih_hui_lin_sakizaya_or_amis_a>",
|
| 4485 |
-
"<dom_formosan_nanang_tadaw_naci_mowna_pgagu>",
|
| 4486 |
-
"<dom_formosan_naomi_tsukida_correlative_clauses_seedi>",
|
| 4487 |
-
"<dom_formosan_naomi_tsukida_ditransitive_causative_se>",
|
| 4488 |
-
"<dom_formosan_nowbucyang_truku_thesis>",
|
| 4489 |
-
"<dom_formosan_ochiai_izumi_2016_comparative_linguisti>",
|
| 4490 |
-
"<dom_formosan_ochiai_izumi_bu_hwan_vocabulary_recorde>",
|
| 4491 |
-
"<dom_formosan_ochiai_izumi_numerals_paran_seediq_rela>",
|
| 4492 |
-
"<dom_formosan_ochiai_izumi_on_a_seediq_glossary_recor>",
|
| 4493 |
-
"<dom_formosan_old_texts>",
|
| 4494 |
-
"<dom_formosan_paiwan_ho_five_dialects>",
|
| 4495 |
-
"<dom_formosan_paiwanstories>",
|
| 4496 |
-
"<dom_formosan_pang_hsin_ting_reconstruction_proto_puy>",
|
| 4497 |
-
"<dom_formosan_patricia_stanley_morphophonemics_of_ver>",
|
| 4498 |
-
"<dom_formosan_paul_jen_kuei_li_comparative_bunun_dial>",
|
| 4499 |
-
"<dom_formosan_paul_jen_kuei_li_conjunction_thao>",
|
| 4500 |
-
"<dom_formosan_paul_jen_kuei_li_internal_relationships>",
|
| 4501 |
-
"<dom_formosan_paul_jen_kuei_li_origins_of_the_east_fo>",
|
| 4502 |
-
"<dom_formosan_paul_jen_kuei_li_review_of_taiwan_abori>",
|
| 4503 |
-
"<dom_formosan_paul_jen_kuei_li_rukai_structure>",
|
| 4504 |
-
"<dom_formosan_paul_jen_kuei_li_some_plant_names_in_fo>",
|
| 4505 |
-
"<dom_formosan_paul_jen_kuei_li_the_preglottalised_sto>",
|
| 4506 |
-
"<dom_formosan_paul_li_atayalic_final_voiced_stops>",
|
| 4507 |
-
"<dom_formosan_paul_li_case_marking_four_formosan_lang>",
|
| 4508 |
-
"<dom_formosan_paul_li_position_atayal_austronesian>",
|
| 4509 |
-
"<dom_formosan_pingdong_county_government_kai_na_sepuc>",
|
| 4510 |
-
"<dom_formosan_puyuma_chen_raising_to_object>",
|
| 4511 |
-
"<dom_formosan_puyuma_katipol_kopfjagdriten>",
|
| 4512 |
-
"<dom_formosan_puyuma_teng_pronominal_systems>",
|
| 4513 |
-
"<dom_formosan_puyuma_teng_reference_grammar>",
|
| 4514 |
-
"<dom_formosan_raleigh_ferrell_construction_markers_fo>",
|
| 4515 |
-
"<dom_formosan_raleigh_ferrell_paiwan_phonology_and_pr>",
|
| 4516 |
-
"<dom_formosan_raleigh_j_ferrell_intent_and_volition_i>",
|
| 4517 |
-
"<dom_formosan_rik_bunun>",
|
| 4518 |
-
"<dom_formosan_rik_de_busser_the_influence_of_christia>",
|
| 4519 |
-
"<dom_formosan_robert_blust_a_note_on_covert_structure>",
|
| 4520 |
-
"<dom_formosan_robert_blust_austronesian_homeland_ling>",
|
| 4521 |
-
"<dom_formosan_robert_blust_some_remarks_linguistic_po>",
|
| 4522 |
-
"<dom_formosan_robert_blust_thao_triplication>",
|
| 4523 |
-
"<dom_formosan_robert_blust_the_austronesian_languages>",
|
| 4524 |
-
"<dom_formosan_rukai_mantauran_stories>",
|
| 4525 |
-
"<dom_formosan_rukai_texts>",
|
| 4526 |
-
"<dom_formosan_rukai_zeitoun_saying>",
|
| 4527 |
-
"<dom_formosan_sakizaya_affixes>",
|
| 4528 |
-
"<dom_formosan_schetelig_mittheilungen_uber_die_sprach>",
|
| 4529 |
-
"<dom_formosan_seals>",
|
| 4530 |
-
"<dom_formosan_seediq_zhang_reference_grammar>",
|
| 4531 |
-
"<dom_formosan_shigeru_tsuchida_and_isidore_dyen_proto>",
|
| 4532 |
-
"<dom_formosan_shigeru_tsuchida_kanakanavu_texts>",
|
| 4533 |
-
"<dom_formosan_shigeru_tsuchida_preliminary_reports_on>",
|
| 4534 |
-
"<dom_formosan_shigeru_tsuchida_reconstruction_proto_t>",
|
| 4535 |
-
"<dom_formosan_shih_chi_stella_yeh_stress_and_quantity>",
|
| 4536 |
-
"<dom_formosan_shih_rukai_adverbial>",
|
| 4537 |
-
"<dom_formosan_sihwei_chen_and_haowen_jiang_ways_of_ta>",
|
| 4538 |
-
"<dom_formosan_sihwei_chen_lexical_aspect_atayal>",
|
| 4539 |
-
"<dom_formosan_soren_egerod_statement_atayal_phonology>",
|
| 4540 |
-
"<dom_formosan_soren_egerod_verb_inflection_atayal>",
|
| 4541 |
-
"<dom_formosan_stacy_teng_malcom_ross_is_puyuma_primar>",
|
| 4542 |
-
"<dom_formosan_stacy_wan_tin_huang_functions_yami_verb>",
|
| 4543 |
-
"<dom_formosan_sung_kuo_descriptive_comparative_constr>",
|
| 4544 |
-
"<dom_formosan_taoshan_elementary_school_atelier_hui_k>",
|
| 4545 |
-
"<dom_formosan_teresa_m_chen_verbal_construction_and_v>",
|
| 4546 |
-
"<dom_formosan_ting_chi_wei_parallelism_in_amis_sluici>",
|
| 4547 |
-
"<dom_formosan_tingchun_chen_successive_cyclic_case_as>",
|
| 4548 |
-
"<dom_formosan_truku_lowking_demonstratives>",
|
| 4549 |
-
"<dom_formosan_tsai_hsui_liu_complementation_three_lan>",
|
| 4550 |
-
"<dom_formosan_tsai_wei_tien_dylan_conjunctive_reducti>",
|
| 4551 |
-
"<dom_formosan_tsou_descriptive_study>",
|
| 4552 |
-
"<dom_formosan_tsukida_naomi_verb_classification_amis>",
|
| 4553 |
-
"<dom_formosan_tu_wen_chiu_a_synchronic_classification>",
|
| 4554 |
-
"<dom_formosan_tung_tsuchida_ting_li_pan_saaroa_texts>",
|
| 4555 |
-
"<dom_formosan_victoria_rau_yi_hsin_wu_and_meng_chien>",
|
| 4556 |
-
"<dom_formosan_wei_huilin_liu_social_structure_yami>",
|
| 4557 |
-
"<dom_formosan_wei_matri_clan_lineage_system_ami>",
|
| 4558 |
-
"<dom_formosan_wei_tien_tsai_subjecthood_temporal_adju>",
|
| 4559 |
-
"<dom_formosan_wiedfelt_formosan_aborigines_atayal>",
|
| 4560 |
-
"<dom_formosan_wilang_yutas_videos>",
|
| 4561 |
-
"<dom_formosan_wu_chunming_adverbials_in_paiwan>",
|
| 4562 |
-
"<dom_formosan_xie_fuhui_introduction_kavalan_grammar>",
|
| 4563 |
-
"<dom_formosan_yedda_palemeq_blog>",
|
| 4564 |
-
"<dom_formosan_yeddas_blog>",
|
| 4565 |
-
"<dom_formosan_yeh_meili_introduction_saisiyat_grammar>",
|
| 4566 |
-
"<dom_formosan_yi_ming_chou_object_control_saisiyat>",
|
| 4567 |
-
"<dom_formosan_yi_ting_chen_a_minimalist_approach_to_a>",
|
| 4568 |
-
"<dom_formosan_yi_ting_chen_amis_left_periphery>",
|
| 4569 |
-
"<dom_formosan_yi_ting_chen_language_use_code_mixing_a>",
|
| 4570 |
-
"<dom_formosan_yi_yang_cheng_kanakanavu_word_level_pro>",
|
| 4571 |
-
"<dom_formosan_yi_yang_cheng_tense_aspect_agent_markin>",
|
| 4572 |
-
"<dom_formosan_yoshiro_nihira_bunun_vocabulary>",
|
| 4573 |
-
"<dom_formosan_yuehchien_chien_the_lexical_system_of_y>",
|
| 4574 |
-
"<dom_formosan_yukihiro_yamada_ying_chu_liao_phonology>",
|
| 4575 |
-
"<dom_formosan_zeng_shifen_reduplication_affixation_pa>",
|
| 4576 |
-
"<dom_formosan_zhan_sujuan_taiwan_indigenous_peoples_h>",
|
| 4577 |
-
"<dom_formosan_zhang_xiujuan_introduction_paiwan_gramm>",
|
| 4578 |
-
"<dom_formosan_zhang_yongli_pan_jiarong_introduction_t>",
|
| 4579 |
-
"<dom_formosan_zhao_shanhe_li_taiyuan_zhu_qingyi_abori>",
|
| 4580 |
-
"<dom_formosan_zheng_acl_2024>",
|
| 4581 |
-
"<dom_formosan_zheng_data>",
|
| 4582 |
-
"<dom_formosan_zheng_yumei_zhu_qingyi_bo_hongming_abor>",
|
| 4583 |
-
"<dom_learning_vocab>",
|
| 4584 |
-
"<dom_nine_level>",
|
| 4585 |
-
"<dom_ntu>",
|
| 4586 |
-
"<dom_picture_book>",
|
| 4587 |
-
"<dom_picture_story>",
|
| 4588 |
-
"<dom_presidential_apology>",
|
| 4589 |
-
"<dom_reading_writing>",
|
| 4590 |
"<dom_unknown>",
|
| 4591 |
-
"<dom_youtube>",
|
| 4592 |
"<src_ami>",
|
| 4593 |
"<src_bnn>",
|
| 4594 |
"<src_ckv>",
|
|
|
|
| 1656 |
"single_word": false,
|
| 1657 |
"special": true
|
| 1658 |
},
|
| 1659 |
+
"261425": {
|
| 1660 |
"content": "ami_Latn",
|
| 1661 |
"lstrip": false,
|
| 1662 |
"normalized": false,
|
|
|
|
| 1664 |
"single_word": false,
|
| 1665 |
"special": true
|
| 1666 |
},
|
| 1667 |
+
"261426": {
|
| 1668 |
"content": "bnn_Latn",
|
| 1669 |
"lstrip": false,
|
| 1670 |
"normalized": false,
|
|
|
|
| 1672 |
"single_word": false,
|
| 1673 |
"special": true
|
| 1674 |
},
|
| 1675 |
+
"261427": {
|
| 1676 |
"content": "ckv_Latn",
|
| 1677 |
"lstrip": false,
|
| 1678 |
"normalized": false,
|
|
|
|
| 1680 |
"single_word": false,
|
| 1681 |
"special": true
|
| 1682 |
},
|
| 1683 |
+
"261428": {
|
| 1684 |
"content": "dru_Latn",
|
| 1685 |
"lstrip": false,
|
| 1686 |
"normalized": false,
|
|
|
|
| 1688 |
"single_word": false,
|
| 1689 |
"special": true
|
| 1690 |
},
|
| 1691 |
+
"261429": {
|
| 1692 |
"content": "pwn_Latn",
|
| 1693 |
"lstrip": false,
|
| 1694 |
"normalized": false,
|
|
|
|
| 1696 |
"single_word": false,
|
| 1697 |
"special": true
|
| 1698 |
},
|
| 1699 |
+
"261430": {
|
| 1700 |
"content": "pyu_Latn",
|
| 1701 |
"lstrip": false,
|
| 1702 |
"normalized": false,
|
|
|
|
| 1704 |
"single_word": false,
|
| 1705 |
"special": true
|
| 1706 |
},
|
| 1707 |
+
"261431": {
|
| 1708 |
"content": "ssf_Latn",
|
| 1709 |
"lstrip": false,
|
| 1710 |
"normalized": false,
|
|
|
|
| 1712 |
"single_word": false,
|
| 1713 |
"special": true
|
| 1714 |
},
|
| 1715 |
+
"261432": {
|
| 1716 |
"content": "sxr_Latn",
|
| 1717 |
"lstrip": false,
|
| 1718 |
"normalized": false,
|
|
|
|
| 1720 |
"single_word": false,
|
| 1721 |
"special": true
|
| 1722 |
},
|
| 1723 |
+
"261433": {
|
| 1724 |
"content": "szy_Latn",
|
| 1725 |
"lstrip": false,
|
| 1726 |
"normalized": false,
|
|
|
|
| 1728 |
"single_word": false,
|
| 1729 |
"special": true
|
| 1730 |
},
|
| 1731 |
+
"261434": {
|
| 1732 |
"content": "tao_Latn",
|
| 1733 |
"lstrip": false,
|
| 1734 |
"normalized": false,
|
|
|
|
| 1736 |
"single_word": false,
|
| 1737 |
"special": true
|
| 1738 |
},
|
| 1739 |
+
"261435": {
|
| 1740 |
"content": "tay_Latn",
|
| 1741 |
"lstrip": false,
|
| 1742 |
"normalized": false,
|
|
|
|
| 1744 |
"single_word": false,
|
| 1745 |
"special": true
|
| 1746 |
},
|
| 1747 |
+
"261436": {
|
| 1748 |
"content": "trv_Latn",
|
| 1749 |
"lstrip": false,
|
| 1750 |
"normalized": false,
|
|
|
|
| 1752 |
"single_word": false,
|
| 1753 |
"special": true
|
| 1754 |
},
|
| 1755 |
+
"261437": {
|
| 1756 |
"content": "tsu_Latn",
|
| 1757 |
"lstrip": false,
|
| 1758 |
"normalized": false,
|
|
|
|
| 1760 |
"single_word": false,
|
| 1761 |
"special": true
|
| 1762 |
},
|
| 1763 |
+
"261438": {
|
| 1764 |
"content": "xnb_Latn",
|
| 1765 |
"lstrip": false,
|
| 1766 |
"normalized": false,
|
|
|
|
| 1768 |
"single_word": false,
|
| 1769 |
"special": true
|
| 1770 |
},
|
| 1771 |
+
"261439": {
|
| 1772 |
"content": "xsy_Latn",
|
| 1773 |
"lstrip": false,
|
| 1774 |
"normalized": false,
|
|
|
|
| 1776 |
"single_word": false,
|
| 1777 |
"special": true
|
| 1778 |
},
|
| 1779 |
+
"261440": {
|
| 1780 |
"content": "<dialect_central>",
|
| 1781 |
"lstrip": false,
|
| 1782 |
"normalized": false,
|
|
|
|
| 1784 |
"single_word": false,
|
| 1785 |
"special": true
|
| 1786 |
},
|
| 1787 |
+
"261441": {
|
| 1788 |
"content": "<dialect_coastal>",
|
| 1789 |
"lstrip": false,
|
| 1790 |
"normalized": false,
|
|
|
|
| 1792 |
"single_word": false,
|
| 1793 |
"special": true
|
| 1794 |
},
|
| 1795 |
+
"261442": {
|
| 1796 |
"content": "<dialect_dawu>",
|
| 1797 |
"lstrip": false,
|
| 1798 |
"normalized": false,
|
|
|
|
| 1800 |
"single_word": false,
|
| 1801 |
"special": true
|
| 1802 |
},
|
| 1803 |
+
"261443": {
|
| 1804 |
"content": "<dialect_default>",
|
| 1805 |
"lstrip": false,
|
| 1806 |
"normalized": false,
|
|
|
|
| 1808 |
"single_word": false,
|
| 1809 |
"special": true
|
| 1810 |
},
|
| 1811 |
+
"261444": {
|
| 1812 |
"content": "<dialect_deluvalley>",
|
| 1813 |
"lstrip": false,
|
| 1814 |
"normalized": false,
|
|
|
|
| 1816 |
"single_word": false,
|
| 1817 |
"special": true
|
| 1818 |
},
|
| 1819 |
+
"261445": {
|
| 1820 |
"content": "<dialect_dona>",
|
| 1821 |
"lstrip": false,
|
| 1822 |
"normalized": false,
|
|
|
|
| 1824 |
"single_word": false,
|
| 1825 |
"special": true
|
| 1826 |
},
|
| 1827 |
+
"261446": {
|
| 1828 |
"content": "<dialect_duda>",
|
| 1829 |
"lstrip": false,
|
| 1830 |
"normalized": false,
|
|
|
|
| 1832 |
"single_word": false,
|
| 1833 |
"special": true
|
| 1834 |
},
|
| 1835 |
+
"261447": {
|
| 1836 |
"content": "<dialect_eastern>",
|
| 1837 |
"lstrip": false,
|
| 1838 |
"normalized": false,
|
|
|
|
| 1840 |
"single_word": false,
|
| 1841 |
"special": true
|
| 1842 |
},
|
| 1843 |
+
"261448": {
|
| 1844 |
"content": "<dialect_fourseasons>",
|
| 1845 |
"lstrip": false,
|
| 1846 |
"normalized": false,
|
|
|
|
| 1848 |
"single_word": false,
|
| 1849 |
"special": true
|
| 1850 |
},
|
| 1851 |
+
"261449": {
|
| 1852 |
"content": "<dialect_hengchun>",
|
| 1853 |
"lstrip": false,
|
| 1854 |
"normalized": false,
|
|
|
|
| 1856 |
"single_word": false,
|
| 1857 |
"special": true
|
| 1858 |
},
|
| 1859 |
+
"261450": {
|
| 1860 |
"content": "<dialect_jianhe>",
|
| 1861 |
"lstrip": false,
|
| 1862 |
"normalized": false,
|
|
|
|
| 1864 |
"single_word": false,
|
| 1865 |
"special": true
|
| 1866 |
},
|
| 1867 |
+
"261451": {
|
| 1868 |
"content": "<dialect_junqun>",
|
| 1869 |
"lstrip": false,
|
| 1870 |
"normalized": false,
|
|
|
|
| 1872 |
"single_word": false,
|
| 1873 |
"special": true
|
| 1874 |
},
|
| 1875 |
+
"261452": {
|
| 1876 |
"content": "<dialect_kanakanavu>",
|
| 1877 |
"lstrip": false,
|
| 1878 |
"normalized": false,
|
|
|
|
| 1880 |
"single_word": false,
|
| 1881 |
"special": true
|
| 1882 |
},
|
| 1883 |
+
"261453": {
|
| 1884 |
"content": "<dialect_kaqun>",
|
| 1885 |
"lstrip": false,
|
| 1886 |
"normalized": false,
|
|
|
|
| 1888 |
"single_word": false,
|
| 1889 |
"special": true
|
| 1890 |
},
|
| 1891 |
+
"261454": {
|
| 1892 |
"content": "<dialect_kavalan>",
|
| 1893 |
"lstrip": false,
|
| 1894 |
"normalized": false,
|
|
|
|
| 1896 |
"single_word": false,
|
| 1897 |
"special": true
|
| 1898 |
},
|
| 1899 |
+
"261455": {
|
| 1900 |
"content": "<dialect_luanqun>",
|
| 1901 |
"lstrip": false,
|
| 1902 |
"normalized": false,
|
|
|
|
| 1904 |
"single_word": false,
|
| 1905 |
"special": true
|
| 1906 |
},
|
| 1907 |
+
"261456": {
|
| 1908 |
"content": "<dialect_malan>",
|
| 1909 |
"lstrip": false,
|
| 1910 |
"normalized": false,
|
|
|
|
| 1912 |
"single_word": false,
|
| 1913 |
"special": true
|
| 1914 |
},
|
| 1915 |
+
"261457": {
|
| 1916 |
"content": "<dialect_maolin>",
|
| 1917 |
"lstrip": false,
|
| 1918 |
"normalized": false,
|
|
|
|
| 1920 |
"single_word": false,
|
| 1921 |
"special": true
|
| 1922 |
},
|
| 1923 |
+
"261458": {
|
| 1924 |
"content": "<dialect_nanwang>",
|
| 1925 |
"lstrip": false,
|
| 1926 |
"normalized": false,
|
|
|
|
| 1928 |
"single_word": false,
|
| 1929 |
"special": true
|
| 1930 |
},
|
| 1931 |
+
"261459": {
|
| 1932 |
"content": "<dialect_northern>",
|
| 1933 |
"lstrip": false,
|
| 1934 |
"normalized": false,
|
|
|
|
| 1936 |
"single_word": false,
|
| 1937 |
"special": true
|
| 1938 |
},
|
| 1939 |
+
"261460": {
|
| 1940 |
"content": "<dialect_saaroa>",
|
| 1941 |
"lstrip": false,
|
| 1942 |
"normalized": false,
|
|
|
|
| 1944 |
"single_word": false,
|
| 1945 |
"special": true
|
| 1946 |
},
|
| 1947 |
+
"261461": {
|
| 1948 |
"content": "<dialect_saisiyat>",
|
| 1949 |
"lstrip": false,
|
| 1950 |
"normalized": false,
|
|
|
|
| 1952 |
"single_word": false,
|
| 1953 |
"special": true
|
| 1954 |
},
|
| 1955 |
+
"261462": {
|
| 1956 |
"content": "<dialect_sakizaya>",
|
| 1957 |
"lstrip": false,
|
| 1958 |
"normalized": false,
|
|
|
|
| 1960 |
"single_word": false,
|
| 1961 |
"special": true
|
| 1962 |
},
|
| 1963 |
+
"261463": {
|
| 1964 |
"content": "<dialect_sekolik>",
|
| 1965 |
"lstrip": false,
|
| 1966 |
"normalized": false,
|
|
|
|
| 1968 |
"single_word": false,
|
| 1969 |
"special": true
|
| 1970 |
},
|
| 1971 |
+
"261464": {
|
| 1972 |
"content": "<dialect_southern>",
|
| 1973 |
"lstrip": false,
|
| 1974 |
"normalized": false,
|
|
|
|
| 1976 |
"single_word": false,
|
| 1977 |
"special": true
|
| 1978 |
},
|
| 1979 |
+
"261465": {
|
| 1980 |
"content": "<dialect_tanqun>",
|
| 1981 |
"lstrip": false,
|
| 1982 |
"normalized": false,
|
|
|
|
| 1984 |
"single_word": false,
|
| 1985 |
"special": true
|
| 1986 |
},
|
| 1987 |
+
"261466": {
|
| 1988 |
"content": "<dialect_tegudaya>",
|
| 1989 |
"lstrip": false,
|
| 1990 |
"normalized": false,
|
|
|
|
| 1992 |
"single_word": false,
|
| 1993 |
"special": true
|
| 1994 |
},
|
| 1995 |
+
"261467": {
|
| 1996 |
"content": "<dialect_thao>",
|
| 1997 |
"lstrip": false,
|
| 1998 |
"normalized": false,
|
|
|
|
| 2000 |
"single_word": false,
|
| 2001 |
"special": true
|
| 2002 |
},
|
| 2003 |
+
"261468": {
|
| 2004 |
"content": "<dialect_truku>",
|
| 2005 |
"lstrip": false,
|
| 2006 |
"normalized": false,
|
|
|
|
| 2008 |
"single_word": false,
|
| 2009 |
"special": true
|
| 2010 |
},
|
| 2011 |
+
"261469": {
|
| 2012 |
"content": "<dialect_tsou>",
|
| 2013 |
"lstrip": false,
|
| 2014 |
"normalized": false,
|
|
|
|
| 2016 |
"single_word": false,
|
| 2017 |
"special": true
|
| 2018 |
},
|
| 2019 |
+
"261470": {
|
| 2020 |
"content": "<dialect_unknown>",
|
| 2021 |
"lstrip": false,
|
| 2022 |
"normalized": false,
|
|
|
|
| 2024 |
"single_word": false,
|
| 2025 |
"special": true
|
| 2026 |
},
|
| 2027 |
+
"261471": {
|
| 2028 |
"content": "<dialect_wanda>",
|
| 2029 |
"lstrip": false,
|
| 2030 |
"normalized": false,
|
|
|
|
| 2032 |
"single_word": false,
|
| 2033 |
"special": true
|
| 2034 |
},
|
| 2035 |
+
"261472": {
|
| 2036 |
"content": "<dialect_wanshan>",
|
| 2037 |
"lstrip": false,
|
| 2038 |
"normalized": false,
|
|
|
|
| 2040 |
"single_word": false,
|
| 2041 |
"special": true
|
| 2042 |
},
|
| 2043 |
+
"261473": {
|
| 2044 |
"content": "<dialect_wenshui>",
|
| 2045 |
"lstrip": false,
|
| 2046 |
"normalized": false,
|
|
|
|
| 2048 |
"single_word": false,
|
| 2049 |
"special": true
|
| 2050 |
},
|
| 2051 |
+
"261474": {
|
| 2052 |
"content": "<dialect_wutai>",
|
| 2053 |
"lstrip": false,
|
| 2054 |
"normalized": false,
|
|
|
|
| 2056 |
"single_word": false,
|
| 2057 |
"special": true
|
| 2058 |
},
|
| 2059 |
+
"261475": {
|
| 2060 |
"content": "<dialect_xiqun>",
|
| 2061 |
"lstrip": false,
|
| 2062 |
"normalized": false,
|
|
|
|
| 2064 |
"single_word": false,
|
| 2065 |
"special": true
|
| 2066 |
},
|
| 2067 |
+
"261476": {
|
| 2068 |
"content": "<dialect_xiuguluan>",
|
| 2069 |
"lstrip": false,
|
| 2070 |
"normalized": false,
|
|
|
|
| 2072 |
"single_word": false,
|
| 2073 |
"special": true
|
| 2074 |
},
|
| 2075 |
+
"261477": {
|
| 2076 |
"content": "<dialect_yami>",
|
| 2077 |
"lstrip": false,
|
| 2078 |
"normalized": false,
|
|
|
|
| 2080 |
"single_word": false,
|
| 2081 |
"special": true
|
| 2082 |
},
|
| 2083 |
+
"261478": {
|
| 2084 |
"content": "<dialect_yilanzeaol>",
|
| 2085 |
"lstrip": false,
|
| 2086 |
"normalized": false,
|
|
|
|
| 2088 |
"single_word": false,
|
| 2089 |
"special": true
|
| 2090 |
},
|
| 2091 |
+
"261479": {
|
| 2092 |
"content": "<dialect_zeaol>",
|
| 2093 |
"lstrip": false,
|
| 2094 |
"normalized": false,
|
|
|
|
| 2096 |
"single_word": false,
|
| 2097 |
"special": true
|
| 2098 |
},
|
| 2099 |
+
"261480": {
|
| 2100 |
"content": "<dialect_zhiben>",
|
| 2101 |
"lstrip": false,
|
| 2102 |
"normalized": false,
|
|
|
|
| 2104 |
"single_word": false,
|
| 2105 |
"special": true
|
| 2106 |
},
|
| 2107 |
+
"261481": {
|
| 2108 |
"content": "<dialect_zhuoqun>",
|
| 2109 |
"lstrip": false,
|
| 2110 |
"normalized": false,
|
|
|
|
| 2112 |
"single_word": false,
|
| 2113 |
"special": true
|
| 2114 |
},
|
| 2115 |
+
"261482": {
|
| 2116 |
+
"content": "<dom_classroom>",
|
| 2117 |
"lstrip": false,
|
| 2118 |
"normalized": false,
|
| 2119 |
"rstrip": false,
|
| 2120 |
"single_word": false,
|
| 2121 |
"special": true
|
| 2122 |
},
|
| 2123 |
+
"261483": {
|
| 2124 |
"content": "<dom_culture>",
|
| 2125 |
"lstrip": false,
|
| 2126 |
"normalized": false,
|
|
|
|
| 2128 |
"single_word": false,
|
| 2129 |
"special": true
|
| 2130 |
},
|
| 2131 |
+
"261484": {
|
| 2132 |
"content": "<dom_dictionary>",
|
| 2133 |
"lstrip": false,
|
| 2134 |
"normalized": false,
|
|
|
|
| 2136 |
"single_word": false,
|
| 2137 |
"special": true
|
| 2138 |
},
|
| 2139 |
+
"261485": {
|
| 2140 |
+
"content": "<dom_education>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2141 |
"lstrip": false,
|
| 2142 |
"normalized": false,
|
| 2143 |
"rstrip": false,
|
| 2144 |
"single_word": false,
|
| 2145 |
"special": true
|
| 2146 |
},
|
| 2147 |
+
"261486": {
|
| 2148 |
+
"content": "<dom_linguistic>",
|
| 2149 |
"lstrip": false,
|
| 2150 |
"normalized": false,
|
| 2151 |
"rstrip": false,
|
| 2152 |
"single_word": false,
|
| 2153 |
"special": true
|
| 2154 |
},
|
| 2155 |
+
"261487": {
|
| 2156 |
+
"content": "<dom_media>",
|
| 2157 |
"lstrip": false,
|
| 2158 |
"normalized": false,
|
| 2159 |
"rstrip": false,
|
| 2160 |
"single_word": false,
|
| 2161 |
"special": true
|
| 2162 |
},
|
| 2163 |
+
"261488": {
|
| 2164 |
+
"content": "<dom_narrative>",
|
| 2165 |
"lstrip": false,
|
| 2166 |
"normalized": false,
|
| 2167 |
"rstrip": false,
|
| 2168 |
"single_word": false,
|
| 2169 |
"special": true
|
| 2170 |
},
|
| 2171 |
+
"261489": {
|
| 2172 |
+
"content": "<dom_religious>",
|
| 2173 |
"lstrip": false,
|
| 2174 |
"normalized": false,
|
| 2175 |
"rstrip": false,
|
| 2176 |
"single_word": false,
|
| 2177 |
"special": true
|
| 2178 |
},
|
| 2179 |
+
"261490": {
|
| 2180 |
+
"content": "<dom_unknown>",
|
| 2181 |
"lstrip": false,
|
| 2182 |
"normalized": false,
|
| 2183 |
"rstrip": false,
|
| 2184 |
"single_word": false,
|
| 2185 |
"special": true
|
| 2186 |
},
|
| 2187 |
+
"261491": {
|
| 2188 |
+
"content": "<src_ami>",
|
| 2189 |
"lstrip": false,
|
| 2190 |
"normalized": false,
|
| 2191 |
"rstrip": false,
|
| 2192 |
"single_word": false,
|
| 2193 |
"special": true
|
| 2194 |
},
|
| 2195 |
+
"261492": {
|
| 2196 |
+
"content": "<src_bnn>",
|
| 2197 |
"lstrip": false,
|
| 2198 |
"normalized": false,
|
| 2199 |
"rstrip": false,
|
| 2200 |
"single_word": false,
|
| 2201 |
"special": true
|
| 2202 |
},
|
| 2203 |
+
"261493": {
|
| 2204 |
+
"content": "<src_ckv>",
|
| 2205 |
"lstrip": false,
|
| 2206 |
"normalized": false,
|
| 2207 |
"rstrip": false,
|
| 2208 |
"single_word": false,
|
| 2209 |
"special": true
|
| 2210 |
},
|
| 2211 |
+
"261494": {
|
| 2212 |
+
"content": "<src_dru>",
|
| 2213 |
"lstrip": false,
|
| 2214 |
"normalized": false,
|
| 2215 |
"rstrip": false,
|
| 2216 |
"single_word": false,
|
| 2217 |
"special": true
|
| 2218 |
},
|
| 2219 |
+
"261495": {
|
| 2220 |
+
"content": "<src_eng>",
|
| 2221 |
"lstrip": false,
|
| 2222 |
"normalized": false,
|
| 2223 |
"rstrip": false,
|
| 2224 |
"single_word": false,
|
| 2225 |
"special": true
|
| 2226 |
},
|
| 2227 |
+
"261496": {
|
| 2228 |
+
"content": "<src_pwn>",
|
| 2229 |
"lstrip": false,
|
| 2230 |
"normalized": false,
|
| 2231 |
"rstrip": false,
|
| 2232 |
"single_word": false,
|
| 2233 |
"special": true
|
| 2234 |
},
|
| 2235 |
+
"261497": {
|
| 2236 |
+
"content": "<src_pyu>",
|
| 2237 |
"lstrip": false,
|
| 2238 |
"normalized": false,
|
| 2239 |
"rstrip": false,
|
| 2240 |
"single_word": false,
|
| 2241 |
"special": true
|
| 2242 |
},
|
| 2243 |
+
"261498": {
|
| 2244 |
+
"content": "<src_ssf>",
|
| 2245 |
"lstrip": false,
|
| 2246 |
"normalized": false,
|
| 2247 |
"rstrip": false,
|
| 2248 |
"single_word": false,
|
| 2249 |
"special": true
|
| 2250 |
},
|
| 2251 |
+
"261499": {
|
| 2252 |
+
"content": "<src_sxr>",
|
| 2253 |
"lstrip": false,
|
| 2254 |
"normalized": false,
|
| 2255 |
"rstrip": false,
|
| 2256 |
"single_word": false,
|
| 2257 |
"special": true
|
| 2258 |
},
|
| 2259 |
+
"261500": {
|
| 2260 |
+
"content": "<src_szy>",
|
| 2261 |
"lstrip": false,
|
| 2262 |
"normalized": false,
|
| 2263 |
"rstrip": false,
|
| 2264 |
"single_word": false,
|
| 2265 |
"special": true
|
| 2266 |
},
|
| 2267 |
+
"261501": {
|
| 2268 |
+
"content": "<src_tao>",
|
| 2269 |
"lstrip": false,
|
| 2270 |
"normalized": false,
|
| 2271 |
"rstrip": false,
|
| 2272 |
"single_word": false,
|
| 2273 |
"special": true
|
| 2274 |
},
|
| 2275 |
+
"261502": {
|
| 2276 |
+
"content": "<src_tay>",
|
| 2277 |
"lstrip": false,
|
| 2278 |
"normalized": false,
|
| 2279 |
"rstrip": false,
|
| 2280 |
"single_word": false,
|
| 2281 |
"special": true
|
| 2282 |
},
|
| 2283 |
+
"261503": {
|
| 2284 |
+
"content": "<src_trv>",
|
| 2285 |
"lstrip": false,
|
| 2286 |
"normalized": false,
|
| 2287 |
"rstrip": false,
|
| 2288 |
"single_word": false,
|
| 2289 |
"special": true
|
| 2290 |
},
|
| 2291 |
+
"261504": {
|
| 2292 |
+
"content": "<src_tsu>",
|
| 2293 |
"lstrip": false,
|
| 2294 |
"normalized": false,
|
| 2295 |
"rstrip": false,
|
| 2296 |
"single_word": false,
|
| 2297 |
"special": true
|
| 2298 |
},
|
| 2299 |
+
"261505": {
|
| 2300 |
+
"content": "<src_xnb>",
|
| 2301 |
"lstrip": false,
|
| 2302 |
"normalized": false,
|
| 2303 |
"rstrip": false,
|
| 2304 |
"single_word": false,
|
| 2305 |
"special": true
|
| 2306 |
},
|
| 2307 |
+
"261506": {
|
| 2308 |
+
"content": "<src_xsy>",
|
| 2309 |
"lstrip": false,
|
| 2310 |
"normalized": false,
|
| 2311 |
"rstrip": false,
|
| 2312 |
"single_word": false,
|
| 2313 |
"special": true
|
| 2314 |
},
|
| 2315 |
+
"261507": {
|
| 2316 |
+
"content": "<src_zh>",
|
| 2317 |
"lstrip": false,
|
| 2318 |
"normalized": false,
|
| 2319 |
"rstrip": false,
|
| 2320 |
"single_word": false,
|
| 2321 |
"special": true
|
| 2322 |
},
|
| 2323 |
+
"261508": {
|
| 2324 |
+
"content": "<to_ami>",
|
| 2325 |
"lstrip": false,
|
| 2326 |
"normalized": false,
|
| 2327 |
"rstrip": false,
|
| 2328 |
"single_word": false,
|
| 2329 |
"special": true
|
| 2330 |
},
|
| 2331 |
+
"261509": {
|
| 2332 |
+
"content": "<to_bnn>",
|
| 2333 |
"lstrip": false,
|
| 2334 |
"normalized": false,
|
| 2335 |
"rstrip": false,
|
| 2336 |
"single_word": false,
|
| 2337 |
"special": true
|
| 2338 |
},
|
| 2339 |
+
"261510": {
|
| 2340 |
+
"content": "<to_ckv>",
|
| 2341 |
"lstrip": false,
|
| 2342 |
"normalized": false,
|
| 2343 |
"rstrip": false,
|
| 2344 |
"single_word": false,
|
| 2345 |
"special": true
|
| 2346 |
},
|
| 2347 |
+
"261511": {
|
| 2348 |
+
"content": "<to_dru>",
|
| 2349 |
"lstrip": false,
|
| 2350 |
"normalized": false,
|
| 2351 |
"rstrip": false,
|
| 2352 |
"single_word": false,
|
| 2353 |
"special": true
|
| 2354 |
},
|
| 2355 |
+
"261512": {
|
| 2356 |
+
"content": "<to_eng>",
|
| 2357 |
"lstrip": false,
|
| 2358 |
"normalized": false,
|
| 2359 |
"rstrip": false,
|
| 2360 |
"single_word": false,
|
| 2361 |
"special": true
|
| 2362 |
},
|
| 2363 |
+
"261513": {
|
| 2364 |
+
"content": "<to_pwn>",
|
| 2365 |
"lstrip": false,
|
| 2366 |
"normalized": false,
|
| 2367 |
"rstrip": false,
|
| 2368 |
"single_word": false,
|
| 2369 |
"special": true
|
| 2370 |
},
|
| 2371 |
+
"261514": {
|
| 2372 |
+
"content": "<to_pyu>",
|
| 2373 |
"lstrip": false,
|
| 2374 |
"normalized": false,
|
| 2375 |
"rstrip": false,
|
| 2376 |
"single_word": false,
|
| 2377 |
"special": true
|
| 2378 |
},
|
| 2379 |
+
"261515": {
|
| 2380 |
+
"content": "<to_ssf>",
|
| 2381 |
"lstrip": false,
|
| 2382 |
"normalized": false,
|
| 2383 |
"rstrip": false,
|
| 2384 |
"single_word": false,
|
| 2385 |
"special": true
|
| 2386 |
},
|
| 2387 |
+
"261516": {
|
| 2388 |
+
"content": "<to_sxr>",
|
| 2389 |
"lstrip": false,
|
| 2390 |
"normalized": false,
|
| 2391 |
"rstrip": false,
|
| 2392 |
"single_word": false,
|
| 2393 |
"special": true
|
| 2394 |
},
|
| 2395 |
+
"261517": {
|
| 2396 |
+
"content": "<to_szy>",
|
| 2397 |
"lstrip": false,
|
| 2398 |
"normalized": false,
|
| 2399 |
"rstrip": false,
|
| 2400 |
"single_word": false,
|
| 2401 |
"special": true
|
| 2402 |
},
|
| 2403 |
+
"261518": {
|
| 2404 |
+
"content": "<to_tao>",
|
| 2405 |
"lstrip": false,
|
| 2406 |
"normalized": false,
|
| 2407 |
"rstrip": false,
|
| 2408 |
"single_word": false,
|
| 2409 |
"special": true
|
| 2410 |
},
|
| 2411 |
+
"261519": {
|
| 2412 |
+
"content": "<to_tay>",
|
| 2413 |
"lstrip": false,
|
| 2414 |
"normalized": false,
|
| 2415 |
"rstrip": false,
|
| 2416 |
"single_word": false,
|
| 2417 |
"special": true
|
| 2418 |
},
|
| 2419 |
+
"261520": {
|
| 2420 |
+
"content": "<to_trv>",
|
| 2421 |
"lstrip": false,
|
| 2422 |
"normalized": false,
|
| 2423 |
"rstrip": false,
|
| 2424 |
"single_word": false,
|
| 2425 |
"special": true
|
| 2426 |
},
|
| 2427 |
+
"261521": {
|
| 2428 |
+
"content": "<to_tsu>",
|
| 2429 |
"lstrip": false,
|
| 2430 |
"normalized": false,
|
| 2431 |
"rstrip": false,
|
| 2432 |
"single_word": false,
|
| 2433 |
"special": true
|
| 2434 |
},
|
| 2435 |
+
"261522": {
|
| 2436 |
+
"content": "<to_xnb>",
|
| 2437 |
"lstrip": false,
|
| 2438 |
"normalized": false,
|
| 2439 |
"rstrip": false,
|
| 2440 |
"single_word": false,
|
| 2441 |
"special": true
|
| 2442 |
},
|
| 2443 |
+
"261523": {
|
| 2444 |
+
"content": "<to_xsy>",
|
| 2445 |
"lstrip": false,
|
| 2446 |
"normalized": false,
|
| 2447 |
"rstrip": false,
|
| 2448 |
"single_word": false,
|
| 2449 |
"special": true
|
| 2450 |
},
|
| 2451 |
+
"261524": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2452 |
"content": "<to_zh>",
|
| 2453 |
"lstrip": false,
|
| 2454 |
"normalized": false,
|
|
|
|
| 2717 |
"<dialect_zeaol>",
|
| 2718 |
"<dialect_zhiben>",
|
| 2719 |
"<dialect_zhuoqun>",
|
| 2720 |
+
"<dom_classroom>",
|
| 2721 |
"<dom_culture>",
|
| 2722 |
"<dom_dictionary>",
|
| 2723 |
+
"<dom_education>",
|
| 2724 |
+
"<dom_linguistic>",
|
| 2725 |
+
"<dom_media>",
|
| 2726 |
+
"<dom_narrative>",
|
| 2727 |
+
"<dom_religious>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2728 |
"<dom_unknown>",
|
|
|
|
| 2729 |
"<src_ami>",
|
| 2730 |
"<src_bnn>",
|
| 2731 |
"<src_ckv>",
|
training_profile.json
CHANGED
|
@@ -1,43 +1,32 @@
|
|
| 1 |
{
|
| 2 |
"schema_version": 3,
|
| 3 |
-
"recipe_id": "nllb200-spm8k-directional-
|
| 4 |
"model_family": "nllb",
|
| 5 |
"corpus_pipeline_version": "formosan-mt-corpus-v3",
|
| 6 |
"mt_standardization": {
|
| 7 |
"id": "formosan-mt-standard-v3",
|
| 8 |
-
"sha256": "
|
| 9 |
"namespace": "formosan-mt"
|
| 10 |
},
|
| 11 |
-
"project_root": ".",
|
| 12 |
-
"corpus_variants": ["public_no_bible", "private_no_bible"],
|
| 13 |
"base_model": {
|
| 14 |
"name": "facebook/nllb-200-distilled-600M",
|
| 15 |
"revision": "f8d333a098d19b4fd9a8b18f94170487ad3f821d"
|
| 16 |
},
|
| 17 |
-
"primary_input_pattern": "corpus_builds/{corpus_name}/pivot_corpora_final/big_corpus_{target}_in_domain_hard.csv",
|
| 18 |
-
"targets": {
|
| 19 |
-
"english": {
|
| 20 |
-
"input_pattern": "corpus_builds/{corpus_name}/pivot_corpora_final/big_corpus_en_in_domain_hard.csv",
|
| 21 |
-
"target_col": "english_sentence",
|
| 22 |
-
"directions": ["f2en", "en2f"],
|
| 23 |
-
"selected_recipe": "NLLB-200 SPM8k directional"
|
| 24 |
-
},
|
| 25 |
-
"chinese": {
|
| 26 |
-
"input_pattern": "corpus_builds/{corpus_name}/pivot_corpora_final/big_corpus_zh_in_domain_hard.csv",
|
| 27 |
-
"target_col": "chinese_sentence",
|
| 28 |
-
"directions": ["f2zh", "zh2f"],
|
| 29 |
-
"selected_recipe": "NLLB-200 SPM8k directional"
|
| 30 |
-
}
|
| 31 |
-
},
|
| 32 |
"splits": {
|
| 33 |
-
"
|
| 34 |
-
"
|
| 35 |
-
"
|
| 36 |
-
"
|
| 37 |
-
"
|
| 38 |
-
"
|
| 39 |
-
"
|
| 40 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
"tiers": ["in_domain_hard"],
|
| 42 |
"headline_tier": "in_domain_hard"
|
| 43 |
},
|
|
@@ -54,14 +43,16 @@
|
|
| 54 |
},
|
| 55 |
"training_defaults": {
|
| 56 |
"steps": 300000,
|
| 57 |
-
"batch_size":
|
| 58 |
-
"grad_accum_steps":
|
| 59 |
"effective_batch_size": 64,
|
| 60 |
"max_length": 384,
|
| 61 |
"learning_rate": 0.00002,
|
| 62 |
"warmup_steps": 4000,
|
| 63 |
"weight_decay": 0.001,
|
| 64 |
"alpha": 0.5,
|
|
|
|
|
|
|
| 65 |
"precision": "bf16",
|
| 66 |
"label_smoothing": 0.1,
|
| 67 |
"save_interval": 0,
|
|
@@ -70,6 +61,7 @@
|
|
| 70 |
"generation_eval_samples_per_language": 128,
|
| 71 |
"generation_eval_batch_size": 16,
|
| 72 |
"validation_beam": 2,
|
|
|
|
| 73 |
"best_metric": "chrF2",
|
| 74 |
"early_stopping_patience": 5,
|
| 75 |
"early_stopping_min_delta": 0.05,
|
|
@@ -87,8 +79,8 @@
|
|
| 87 |
"no_repeat_ngram_size": 0,
|
| 88 |
"repetition_penalty": 1.0,
|
| 89 |
"length_penalty": 1.0,
|
| 90 |
-
"metadata_modes": ["default"
|
| 91 |
-
"bootstrap_samples":
|
| 92 |
"bootstrap_seed": 42
|
| 93 |
}
|
| 94 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"schema_version": 3,
|
| 3 |
+
"recipe_id": "nllb200-spm8k-directional-v5",
|
| 4 |
"model_family": "nllb",
|
| 5 |
"corpus_pipeline_version": "formosan-mt-corpus-v3",
|
| 6 |
"mt_standardization": {
|
| 7 |
"id": "formosan-mt-standard-v3",
|
| 8 |
+
"sha256": "3c93c1abecfc68c72e3bb1d547fbe0bdebb14bb74e7a5d3c5c519bd18d34bf6f",
|
| 9 |
"namespace": "formosan-mt"
|
| 10 |
},
|
|
|
|
|
|
|
| 11 |
"base_model": {
|
| 12 |
"name": "facebook/nllb-200-distilled-600M",
|
| 13 |
"revision": "f8d333a098d19b4fd9a8b18f94170487ad3f821d"
|
| 14 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
"splits": {
|
| 16 |
+
"train_ratio": 0.85,
|
| 17 |
+
"validate_ratio": 0.05,
|
| 18 |
+
"test_ratio": 0.10,
|
| 19 |
+
"min_test_rows": 0,
|
| 20 |
+
"min_validate_rows": 0,
|
| 21 |
+
"min_formosan_tokens": 2,
|
| 22 |
+
"min_target_tokens": 2,
|
| 23 |
+
"min_combined_tokens": 6,
|
| 24 |
+
"min_punctuated_combined_tokens": 5,
|
| 25 |
+
"max_eval_units_per_side": 384,
|
| 26 |
+
"source_ratio_tolerance": 0.02,
|
| 27 |
+
"ratio_basis": "all_pairs_by_language_human_rows_by_source",
|
| 28 |
+
"synthetic_eval_policy": "human_only_source_stratified",
|
| 29 |
+
"character_ngram_jaccard_threshold": 0.95,
|
| 30 |
"tiers": ["in_domain_hard"],
|
| 31 |
"headline_tier": "in_domain_hard"
|
| 32 |
},
|
|
|
|
| 43 |
},
|
| 44 |
"training_defaults": {
|
| 45 |
"steps": 300000,
|
| 46 |
+
"batch_size": 8,
|
| 47 |
+
"grad_accum_steps": 8,
|
| 48 |
"effective_batch_size": 64,
|
| 49 |
"max_length": 384,
|
| 50 |
"learning_rate": 0.00002,
|
| 51 |
"warmup_steps": 4000,
|
| 52 |
"weight_decay": 0.001,
|
| 53 |
"alpha": 0.5,
|
| 54 |
+
"domain_tag_dropout": 0.25,
|
| 55 |
+
"dialect_tag_dropout": 0.25,
|
| 56 |
"precision": "bf16",
|
| 57 |
"label_smoothing": 0.1,
|
| 58 |
"save_interval": 0,
|
|
|
|
| 61 |
"generation_eval_samples_per_language": 128,
|
| 62 |
"generation_eval_batch_size": 16,
|
| 63 |
"validation_beam": 2,
|
| 64 |
+
"validation_metadata_mode": "default",
|
| 65 |
"best_metric": "chrF2",
|
| 66 |
"early_stopping_patience": 5,
|
| 67 |
"early_stopping_min_delta": 0.05,
|
|
|
|
| 79 |
"no_repeat_ngram_size": 0,
|
| 80 |
"repetition_penalty": 1.0,
|
| 81 |
"length_penalty": 1.0,
|
| 82 |
+
"metadata_modes": ["default"],
|
| 83 |
+
"bootstrap_samples": 0,
|
| 84 |
"bootstrap_seed": 42
|
| 85 |
}
|
| 86 |
}
|