The Direct Answer
Evaluating translation systems for languages with little parallel data requires more than calculating BLEU, COMET, or chrF on a single test set. A defensible evaluation combines translation quality, adequacy, fluency, robustness, error severity, and operational usefulness, with confidence intervals rather than a single headline score. For low-resource settings, the test set should be independently sourced, representative of actual users, and large enough to reveal meaningful differences without treating every token as an independent observation. In practice, BLEU remains useful for regression testing because it is cheap and standardized, but it is weak at detecting factual errors, inappropriate omissions, and failures that matter most in medical, legal, or safety-critical communication. COMET and other learned metrics can correlate better with human judgments, although their performance may decline when the evaluated language pair is unlike the data used to train the metric. As of 25 September 2026, the strongest approach is a scorecard supported by targeted human review, not a search for one universally reliable automatic number.
Also worth reading: What Is AI Translation Quality Assurance and How Should Teams Run It in 2026? · How Can Enterprises Measure the ROI of AI-Powered Translation in 2026? · How Should Enterprises Optimize AI Translation Token Costs Without Sacrificing Quality?
A low-resource evaluation should also distinguish between a language, a language pair, a domain, and a model configuration. “Assamese–English” is not one uniform task: literary prose, government notices, customer support, and clinical conversations have different terminology, sentence structures, and acceptable translation choices. Results from one domain should not be presented as proof of general performance, and scores from a related high-resource pair should not be transferred without direct testing. A credible report names the source and target languages, specific varieties, domains, date of collection, preprocessing rules, model version, decoding settings, and the exact metric implementation. This level of documentation often reveals more about reliability than an additional decimal place in a quality score.
Why Conventional Scores Need Adaptation
Automatic metrics were designed to make evaluation repeatable, yet their assumptions are often poorly matched to scarce-data settings. BLEU uses modified n-gram precision and a brevity penalty, so it rewards lexical overlap while penalizing candidate translations that are longer than their references. This works reasonably well when multiple careful references exist, but low-resource projects may have only one reference produced by a different human or machine. Valid alternatives can then be marked incorrect even when they preserve meaning and read naturally. chrF operates at the character level and is often helpful for morphologically rich or related languages, but it still does not identify every meaning reversal. A system with 80 chrF can omit a dosage instruction and still score well because most characters across the document remain correct.
Learned metrics such as COMET estimate quality from contextual representations and may respond more closely to human preferences. They are not immune to bias, however, because their training data may overrepresent English and widely studied language pairs. A learned metric can also favor a candidate that sounds like a polished reference while subtly changing the source meaning. Research including the LINGUALX64 benchmark emphasizes that multilingual LLM translation performance should be examined for symmetry and asymmetry across directions, rather than summarized through a single aggregate result. If a system performs much better from English into Assamese than from Assamese into English, an average score can conceal a serious deployment constraint. Direction-specific reporting is therefore more informative than a table-wide total.
The evaluation sample itself needs uncertainty estimates. If a test set contains 1,000 sentences and a system differs from its competitor by 0.4 BLEU, that gap may be smaller than statistical noise. Resampling sentences can produce bootstrap confidence intervals, while paired bootstrap or permutation tests can determine whether two systems differ consistently on the same examples. Analysts should state the resampling unit when documents share terminology or translators, because treating every sentence from one document as independent can make uncertainty look artificially small. Human assessment also needs agreement statistics, such as Krippendorff’s alpha or Fleiss’ kappa, although low agreement may reflect unclear guidelines rather than careless raters. The number of raters matters too: adding experts is usually more valuable than adding many unqualified native speakers who cannot judge specialized terminology.
Building a Test Set That Reflects Real Use
The most consequential step is constructing or auditing the evaluation data before running models. Sentences should be sampled from the intended domain and collected independently of prompts, fine-tuning examples, and examples used for repeated development. A random sample from a website may include informal text, duplicated boilerplate, or named entities that distort results. The process should document its language variety, geography, genre, time period, text length, and any filtering applied. Data contamination cannot always be proved, but provenance checks, exact-match searches, near-duplicate detection, and separation of train, validation, and test records reduce the risk. Without those controls, a benchmark can become a measure of memorization rather than translation ability.
A useful test set often contains several slices. Clean everyday sentences establish the baseline, while shorter fragments, long sentences, punctuation irregularities, code-switching, borrowed terms, and dialectal variation test robustness. Terminology-heavy documents check domain competence, and deliberately difficult cases can reveal whether a system invents fluent but unsupported content. It is also useful to include a small set of “challenge” examples, but they should not dominate the headline score. For example, a set with 800 routine sentences and 200 adversarial cases gives a realistic operating profile and a diagnostic profile. Reporting both prevents impressive performance on easy inputs from hiding failures encountered in production.
The target quantity depends on precision needs, not on an arbitrary rule that every project requires 1,000 sentences. A pilot comparison with 300 to 500 diverse sentences may be adequate for broad screening, while high-stakes acceptance testing may require thousands of segments or complete documents. Very small samples are dominated by a few unusually long or difficult sentences, while expensive human review limits the feasible sample size. Stratified sampling and document-level confidence intervals help manage this tension. Crucially, the test set should remain stable across model versions; replacing it after every improvement makes historical comparisons unreliable. New material can be introduced in a clearly labeled benchmark refresh, with old and new results reported separately.
Choosing Metrics for Scarcity and Language Type
No metric should be chosen by popularity alone. The combination should reflect tokenization, morphology, available references, and the cost of different errors. BLEU remains a sensible baseline for stable comparisons, particularly when tokenization and case handling are documented. chrF can provide a different view for languages with rich inflection or spelling variation, while chrF++ and sentence-level chrF may reduce the tendency of sentence scores to look deceptively strong in short text. For morphologically rich languages, character-level metrics should be interpreted alongside analyses of inflection, agreement, word order, and missing morphemes. A score gain caused by copying source spelling may not correspond to a better translation.
COMET or related learned metrics can add evidence about adequacy and fluency, but teams should verify behavior on the actual pair. A useful sanity check is to submit deliberately altered candidates, including fluent hallucinations, omissions, wrong numbers, and reversed polarity. If the metric rewards a hallucination or ignores a numerical error, it should not be trusted as the main acceptance criterion. Term-based accuracy, named-entity accuracy, number accuracy, and omission rates can be more meaningful for restricted domains. Human scores commonly separate dimensions such as meaning preservation, target-language fluency, terminology, style, and overall preference, but combining them into one number should be avoided unless the weighting is defensible.
| Feature | Automatic scorecard | Human-centered evaluation | Hybrid approach |
|---|---|---|---|
| Cost and speed | Low; results in minutes or hours | High; depends on raters and sample size | Moderate; automated screening narrows human review |
| Reproducibility | High when version, tokenization, and settings are fixed | Lower unless guidelines and adjudication are formalized | High, provided human procedures are documented |
| Detection of meaning errors | Partial; depends on metric and language pair | Strong when qualified reviewers inspect the source and target | Usually strongest overall |
| Suitability for iteration | Good for routine regression tests | Good for validation and diagnosis | Best balance of cost and evidence |
| Main limitation | Bias toward surface patterns and reference style | Subjectivity, fatigue, and limited sample size | More planning and statistical interpretation |
Comparing SMT, NMT, LLMs, and Human Review
The main alternative is not simply “NMT versus human translators.” It is a choice among statistical machine translation, specialized neural systems, multilingual large language models, translation memories, and people. Statistical MT may remain competitive when training data is extremely small, terminology is tightly constrained, and the domain is repetitive. Rule-based systems can be effective for closed vocabularies or predictable formats, but they demand substantial linguistic and maintenance effort. A hybrid NMT–SMT approach may preserve useful behavior from statistical systems while adding neural generation, as explored in recent low-resource translation research. Its value should be demonstrated through measured gains and operating cost, not assumed from the word “hybrid.”
Large language models offer flexible prompting, explanation, and adaptation across many language pairs, but flexibility introduces unpredictability. They may handle context and rare terminology well while also producing confident translations unsupported by the source. A model can appear better on literary prose yet be less suitable for a regulated workflow. Comparisons should therefore fix the operational conditions: the same source set, allowed tools, context, retry policy, glossary, output format, and latency or cost budget. Testing a model with a glossary against a baseline without one measures the combined workflow rather than the model alone, but that can still be the right comparison if the workflow is what a buyer will actually deploy.
Human translation remains the appropriate reference for high-stakes or culturally sensitive material, especially when certification, accountability, or stylistic fidelity is required. It also has constraints: it is slower, more expensive, and subject to fatigue and disagreement. Post-editing may be more efficient than free translation if the original draft is usable, but edited output and freshly produced output should be distinguished because their error distributions differ. Agencies, in-house teams, and freelance specialists can all be valid options, provided they are qualified for the specific pair and domain. The best method depends on acceptable error severity, turnaround time, data sensitivity, and the volume at which quality must be maintained.
Common Evaluation Mistakes and How to Avoid Them
A frequent mistake is optimizing directly for one benchmark score. A team may adjust prompts or decoding until COMET rises by 1.2 points, without checking whether omissions or hallucinated details became more common. Another error is comparing outputs generated under different conditions, such as giving one model document context and giving another isolated sentences. Mixing machine translation with postedited references also creates an unfair baseline unless the level of human intervention is stated. Analysts sometimes select the best sentence from several attempts and report that result, although such best-of-N decoding is useful in production but should be compared under an equivalent retry budget.
Metric gaming is another concern. Increasing the brevity penalty, changing tokenization, or applying aggressive punctuation normalization can alter the reported score without improving the user’s experience. Lowercasing and stripping punctuation may make a system look stronger on BLEU while hiding capitalization errors required in names or formal text. Teams should archive metric scripts, package versions, model identifiers, prompts, temperature, beam settings, and random seeds where applicable. For proprietary APIs, record the model version and date, because a provider can silently update behavior. Results dated 25 September 2026 describe a particular configuration and should not be treated as permanent model properties.
The last major mistake is ignoring the cost of errors. Equal-weighting a changed comma and a reversed medical instruction is inappropriate in many settings. Error taxonomies should distinguish critical meaning errors, major omissions or additions, terminology failures, minor mistranslations, and stylistic preferences. A system with a lower average score may still be preferred if it eliminates the error class that carries the greatest operational risk. Conversely, a high aggregate score can conceal unacceptable failures concentrated in one locale or topic. Every report should include subgroup results and a transparent severity policy, with a clear process for investigating unexpectedly large differences.
When to Act, and What Evaluation Costs
A full low-resource evaluation is warranted before a production contract, regulated release, or major model-selection decision. A lighter screening run is enough for early research, prompt experiments, or determining whether a language pair deserves investment. A sensible progression is to establish baselines on 300 to 500 representative segments, review errors manually, expand the set to at least 1,000 segments for formal comparisons, and then validate the selected system on fresh or held-out material. Exact sample sizes should reflect the desired confidence and error rate, not a universal standard. If two systems differ by only 0.5 chrF on the same 1,000 sentences, the team should test whether the difference persists before redesigning its workflow.
Costs range from nearly zero for open-source metric software and modest API usage to substantial expert review. The largest expense is usually human assessment, not calculation, and it grows with specialist rates, language scarcity, adjudication, and security requirements. A practical pilot might spend 20 to 40 reviewer hours on a 1,000-sentence sample, but this is an example budget assumption rather than a market quote. Translation API charges depend on input and output tokens, context size, caching, batch processing, and provider pricing, which can change after September 2026. Self-hosted models reduce per-request fees but add hardware, engineering, monitoring, and update costs. A small model can therefore be cheaper at low volume, while a larger or proprietary system may be more economical at high volume if its quality reduces review effort.
The decision rule should compare total workflow cost, not token price alone. A higher-quality system that cuts post-editing time by 20% may justify a larger API bill, provided the 20% estimate comes from measured pilot data. Teams should also estimate retry rates, glossary failures, latency, throughput, and the expected frequency of critical errors. Data residency and retention can be decisive for sensitive material, and a nominally inexpensive API may be unusable under organizational restrictions. Before acting on any ranking, verify the vendor’s current documentation and obtain a quotation for the exact language pair, context limit, and volume.
A Defensible Reporting Standard
A final report should let another team reproduce the comparison. It should identify the date, language varieties, domains, sampling method, test-set size, provenance, and contamination checks. The document should name the models, prompting or fine-tuning procedure, decoding settings, retries, glossary rules, and whether machine output was post-edited. All metrics should be reported by direction and relevant subgroup, with confidence intervals and statistical tests for close comparisons. Human assessment should explain rater qualifications, blinding, error definitions, agreement statistics, and adjudication procedures. Results based on automatic scores alone must be labeled as provisional when critical categories have not been manually checked.
The report should also state what the results do not establish. A strong score on one held-out set does not prove equal performance across every region, gender, dialect, or document type. Agreement with one reference translation does not mean that the output is the only valid translation. A model’s literary fluency does not demonstrate factual reliability in clinical text, and successful translation from English does not guarantee symmetry in the reverse direction. Benchmarks such as LINGUALX64 are useful precisely because they encourage direction-aware analysis, while research on sparse-MoE distillation and NMT–SMT hybrids points to efficiency options that still require independent validation on the intended pair.
For teams working with limited resources, the most defensible practice is to publish the scorecard, raw error counts, representative failures, and a short account of unresolved disagreements. An experienced human translator should review high-risk examples even if a larger crowd supplies routine judgments. AI-generated summaries can organize findings, but they should not replace source inspection or substitute fluent explanations for missing evidence. This discipline makes evaluation slower than a single leaderboard check, yet it produces decisions that are more likely to survive contact with real users.