Evaluates language models' ability to process and generate text in two distinct Sinhala writing systems: standard Unicode and Romanized transliteration. It probes script-specific perplexity, coherence, and grammatical correctness, highlighting morphological understanding and training data biases. Use when the user wants to benchmark on Sinhala Unicode & Romanized, or asks about evaluating this task. Reports perplexity.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill sinhala-script-benchmark-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Sinhala Script Benchmark Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-sinhala-script-benchmark-eval)More formats (shields.io, HTML) on the badges page.
---
name: sinhala-script-benchmark-eval
description: Evaluates language models' ability to process and generate text in two distinct Sinhala writing systems: standard Unicode and Romanized transliteration. It probes script-specific perplexity, coherence, and grammatical correctness, highlighting morphological understanding and training data biases. Use when the user wants to benchmark on Sinhala Unicode & Romanized, or asks about evaluating this task. Reports perplexity.
metadata:
skill_kind: dataset_eval
source_arxiv: 2601.14958
bibtex_key: rajapakse2026comprehensive
confidence: high
---
# sinhala-script-benchmark-eval
> A Comprehensive Benchmark of Language Models on Unicode and Romanized Sinhala — Rajapakse et al. (2026) (arXiv:2601.14958, 2026)
## What this evaluates
Evaluates language models' ability to process and generate text in two distinct Sinhala writing systems: standard Unicode and Romanized transliteration. It probes script-specific perplexity, coherence, and grammatical correctness, highlighting morphological understanding and training data biases.
## Datasets
- **Sinhala Unicode & Romanized** — total ?; splits: test (-1)
## Metrics
- `perplexity` **(primary)** — range: scalar (lower is better)
- Standard language modeling perplexity: PPL = exp(-1/N * sum(log P(x_i))). Lower values indicate better fluency and probability calibration.
- `Coherence` — range: [1, 3] (lower is better)
- Human/automated rating on a 1-3 scale (1=Excellent, 2=Acceptable, 3=Poor). Averaged across the dataset.
- `Grammar/Readability` — range: [1, 3] (lower is better)
- Human/automated rating on a 1-3 scale (1=Excellent, 2=Acceptable, 3=Poor). Averaged across the dataset.
## Input / output format
**Input**: Prompt text in either Sinhala Unicode or Romanized script (e.g., 'mama kalin…' or 'monawada meke karanna…').
**Output**: Text completion in the corresponding script (Sinhala Unicode or Romanized).
## Scoring recipe
```python
# Perplexity
ppl = exp(-mean(log(model.log_prob(tokens))))
# Qualitative (averaged across dataset)
coherence = mean([1 if excellent else 2 if acceptable else 3 for c in completions])
grammar = mean([1 if excellent else 2 if acceptable else 3 for c in completions])
```
## Common pitfalls
- Lower numerical scores indicate better performance for qualitative ratings (1=Excellent, 3=Poor).
- Models exhibit strong script bias; performance on Unicode does not generalize to Romanized Sinhala and vice versa.
- Subject-verb agreement and morphological endings are frequent failure points across models.
## Evidence (verbatim from paper)
> The perplexity scores for the open-source models are presented in Table[I]. The results indicate that the Mistral-Nemo-Base-2407 achieved the lowest perplexity for Unicode scripts (2.19) and Mistral-7B-v0.3 achieved the lowest perplexity for Romanized scripts (74.76), outperforming significantly larger models.
## Citation
```bibtex
@misc{rajapakse2026comprehensive,
title={A Comprehensive Benchmark of Language Models on Unicode and Romanized Sinhala},
author={Rajapakse et al. (2026)},
year={2026},
note={arXiv:2601.14958}
}
```
- arXiv: 2601.14958
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!