Views
No views yet
bert-base-multilingual-cased that restores punctuation around
Eastern Armenian participle clauses, framed as 4-class token labeling.
From the CODASSCA 2026 paper Sequence Labeling for Low-Resource Syntax:
Automatic Punctuation of Armenian Participle Clauses.0 O · 1 COMMA_AFTER · 2 BUTH_AFTER · 3 REMOVE_COMMA| Benchmark | macro-F1 |
|---|---|
| Gold 2K (noisy web text) | 0.4655 |
| Shtemaran 292 (clean textbook) | 0.5190 |
O class; lower 6 layers
frozen; hyper-parameters tuned with Optuna (21 trials). See artifacts/ for the
raw checkpoint, best config, trial log and final results; training/ holds the notebook.1from transformers import AutoTokenizer, AutoModelForTokenClassification
2tok = AutoTokenizer.from_pretrained("AlbertHakobyan/mbert-armenian-participle-punct")
3model = AutoModelForTokenClassification.from_pretrained("AlbertHakobyan/mbert-armenian-participle-punct")P = 0.45 * P_bilstm + 0.55 * P_mbert (macro-F1 0.6745 on Shtemaran). See the
bilstm-armenian-participle-punct repo.