SAVRN
Search Contact SAVRN

Open-weight model · Text generation

Haidass-Translate-143M

by DALab DALabCommunity/Haidass-Translate-143M

English | 中文 A 143M-parameter bidirectional Chinese↔English translation model, instruction-tuned on the Haidass1.5-143M base — the strongest zh⇄en translator at this scale among general chat-architecture models.

Parameters143M
Context4,096
Weights286.2 MB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads627

Runs On

What it takes to serve Haidass-Translate-143M (143M parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 0.3 GB 0.3 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 0.1 GB 0.2 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 0.1 GB 0.1 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By DALab, published under apache-2.0, revision bf54ef1c2647.

English | 中文 A 143M-parameter bidirectional Chinese↔English translation model, instruction-tuned on the Haidass1.5-143M base — the strongest zh⇄en translator at this scale among general chat-architecture models. Drafter-143M: a control model with identical configuration, data and training recipe, except that it starts from random initialization instead of the pretrained base — used to quantify the contribution of base-model pretraining. OPUS-MT models are single-directional — one independent 78M model per direction; "-" marks directions a model does not serve. The same models re-evaluated on FLORES+ devtest (released 2026; zero overlap with dev): devtest sentences do not overlap with dev.…

Read DALab's full model card

English | 中文

A 143M-parameter bidirectional Chinese↔English translation model, instruction-tuned on the Haidass1.5-143M base — the strongest zh⇄en translator at this scale among general chat-architecture models.

Live demo: Haidass Translate on Hugging Face Spaces.

FLORES-200 dev

Model Params Arch en→zh BLEU en→zh chrF++ zh→en BLEU zh→en chrF++
HY-MT1.5-1.8B 1800M LLM 44.65 30.98 27.68 57.96
Qwen3-0.6B 600M LLM 30.94 21.10 20.21 48.62
OPUS-MT en-zh 78M Seq2Seq 30.88 21.80 - -
OPUS-MT zh-en 78M Seq2Seq - - 22.99 51.03
Qwen2.5-0.5B-Instruct 500M LLM 28.96 19.65 18.09 45.85
M2M-100-418M 418M Seq2Seq 28.04 20.53 20.58 48.79
Haidass-Translate-143M 143M LLM 27.56 19.27 17.17 43.20
NLLB-200-distilled-600M 600M Seq2Seq 22.44 16.74 25.71 52.28
Drafter-143M* 143M LLM 12.04 9.43 5.47 27.31

*Drafter-143M: a control model with identical configuration, data and training recipe, except that it starts from random initialization instead of the pretrained base — used to quantify the contribution of base-model pretraining.

OPUS-MT models are single-directional — one independent 78M model per direction; "-" marks directions a model does not serve.

FLORES+ devtest

The same models re-evaluated on FLORES+ devtest (released 2026; zero overlap with dev):

Model Params Arch en→zh BLEU en→zh chrF++ zh→en BLEU zh→en chrF++
HY-MT1.5-1.8B 1800M LLM 37.36 26.08 20.33 51.48
OPUS-MT en-zh 78M Seq2Seq 32.23 22.40 - -
OPUS-MT zh-en 78M Seq2Seq - - 23.06 51.03
Qwen3-0.6B 600M LLM 31.76 21.48 19.66 48.14
Qwen2.5-0.5B-Instruct 500M LLM 29.32 19.95 18.04 46.00
M2M-100-418M 418M Seq2Seq 28.29 20.60 19.52 47.87
Haidass-Translate-143M 143M LLM 28.48 19.45 17.01 42.69
NLLB-200-distilled-600M 600M Seq2Seq 23.07 16.94 24.30 51.48
Drafter-143M* 143M LLM 10.93 9.00 5.82 26.83

devtest sentences do not overlap with dev. This model's scores on the new split are essentially unchanged (en→zh 27.56→28.48, zh→en 17.17→17.01), indicating that the results reflect translation ability rather than memorization of a specific benchmark.

Decontamination

To verify that the scores contain no test-set leakage, we audited all 15.83M training samples: every sentence is cut into consecutive fragments (8 words for English, 10 characters for Chinese), and any training sample sharing any fragment with any test sentence is counted as a hit. Results: 1,147 hits (0.0072%) against FLORES-200 dev, 1,788 (0.0113%) against FLORES+ devtest. Manual inspection shows the hits are common-phrase-level fragment overlaps rather than full-sentence leakage — i.e., the reported scores are not inflated by leakage. Audit report (top-50 overlapping samples included for inspection): audit_report.json (devtest audit: audit_floresplus_devtest.json in the same repo).

Training recipe

  • Base: Haidass1.5-143M (Qwen3 architecture: 30 layers, hidden 576, GQA 9/3, vocab 64,000)
  • Data: 7.837M cleaned zh↔en parallel sentence pairs (15.67M samples bidirectional, translation-only, no general-domain data)
  • Packing: official MindSpeed-LLM --pack --neat-pack (607,622 full 2048-token sequences with inter-document attention-mask isolation)
  • Training: 16×Ascend 910C, GBS=256, lr 3e-5 cosine over a 5-epoch schedule; released checkpoint at epoch 4 (iteration 9,496, ~5.0B tokens, loss 1.671) — epoch-wise ablation showed epoch 4 as the sweet spot (epoch 5 added no gain)
  • Framework: MindSpeed-LLM v2.3.0 + Megatron-LM core_v0.12.1 (NPU)

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("DALabCommunity/Haidass-Translate-143M", torch_dtype="bfloat16", device_map="auto")
tok = AutoTokenizer.from_pretrained("DALabCommunity/Haidass-Translate-143M")

msgs = [{"role": "user", "content": "将以下文本翻译为英文:光子甚至比构成原子的物质还要小!"}]
ids = tok.apply_chat_template(msgs, add_generation_prompt=True, return_tensors="pt").to(model.device)
out = model.generate(ids, max_new_tokens=512, do_sample=False)
print(tok.decode(out[0][ids.shape[1]:], skip_special_tokens=True))
# Even photons are smaller than the stuff that makes up atoms!

Note: the training data follows the qwen3 chat template (an empty <think></think> block precedes the assistant turn). Always use the model's built-in chat_template at inference; do not hand-craft prompts.

Translation samples (spot check on FLORES-200 dev)

en→zh:

Src: Water is another example. The compound water is made up of two hydrogen atoms and one oxygen atom. Out: 水是另一个例子。化合物水是由两个氢原子和一个氧原子组成的。(sentence chrF++ 71.7)

Src: They are listed on the UNESCO World Heritage List. Out: 它们被列入联合国教科文组织世界遗产名录。(sentence chrF++ 69.4)

zh→en:

Src: 它们被列入了联合国教科文组织世界遗产名录。 Out: They are listed in the UNESCO World Heritage List. (sentence chrF++ 89.2)

Src: 光子甚至比构成原子的物质还要小! Out: Even photons are smaller than the stuff that makes up atoms! (sentence chrF++ 84.1)

Known limitations

  • zh→en gains come mainly from longer training (2→4 epochs: 14.65→17.17); at 2 epochs, more same-distribution parallel data (1M/4M/8M) plateaued at ~14.4
  • Typical residual errors: entity mix-ups (e.g., "斯洛伐克" → Slovenia), occasional omission of numeric details
  • Optimized for zh⇄en translation only; not a general chat model

Evaluation

  • Metrics: sacreBLEU corpus BLEU (tokenize=zh for Chinese targets, tokenize=13a for English) + chrF++ (word_order=2); prompts byte-identical to the training chat template
  • Benchmark sources: openlanguagedata/flores_plus (FLORES+, the maintained version; gated — auto-approved after accepting terms; Simplified Chinese now cmn_Hans); facebook/flores (original archive, unmaintained); login-free mirror facebookresearch/flores
  • Raw predictions: the eval/ directory in this repo contains per-sentence prediction jsonl ({direction, src, ref, hyp}, one file per model per benchmark) for every model in the tables above — all scores can be recomputed with sacreBLEU
  • Full results & reproduction: the 16-model comparison table, per-sentence predictions, decontamination audits and evaluation scripts live in the companion dataset umeiko/Haidass-Translate-143M-eval

Note: all scores are measured on the FLORES Chinese–English subset (eng_Latn ↔ zho_Hans), bidirectional (997 sentences for dev, 1,012 for devtest), with greedy decoding.

Configuration

Architecture
Qwen3ForCausalLM
Context length (tokens)
4,096
Layers
30
Hidden size
576
Feed-forward size
1,536
Attention heads
9
Key/value heads
3
Head dimension
64
Vocabulary size
64,000
RoPE base
100,000
Stored precision
bfloat16
Model type
qwen3

Identity and Version

Repository
DALabCommunity/Haidass-Translate-143M
Publisher
DALab
Task
Text generation
Modality
Text
Library
Not stated by the source
Parameters
143M parameters
Languages
en, zh
Revision
bf54ef1c26478ef96202c97e9b2451119328b8f2
First published
2026-09-10
Last updated
2026-09-18

Files and Weights

58 files, 302.3 MB in total. The weights are 30 files totalling 286.2 MB in safetensors.

Weights30 files · 286.2 MB
Configuration4 files · 30.5 KB
Tokenizer2 files · 1.3 MB
Documentation2 files · 15.6 KB
Other19 files · 14.8 MB
Repository1 file · 1.6 KB
Every file
FileTypeSizeSHA-256
model-00001-of-000030.safetensorsWeights80.8 MB a33aefce9638
model-00002-of-000030.safetensorsWeights7.1 MB 91c5efcd2302
model-00003-of-000030.safetensorsWeights7.1 MB cd74ffeaa7cf
model-00004-of-000030.safetensorsWeights7.1 MB ee9a50272e3c
model-00005-of-000030.safetensorsWeights7.1 MB a00f91b13378
model-00006-of-000030.safetensorsWeights7.1 MB 96ec69754fef
model-00007-of-000030.safetensorsWeights7.1 MB 7c0942031825
model-00008-of-000030.safetensorsWeights7.1 MB 4536189ceced
model-00009-of-000030.safetensorsWeights7.1 MB b1ecd86f0e48
model-00010-of-000030.safetensorsWeights7.1 MB 9b7d2c767345
model-00011-of-000030.safetensorsWeights7.1 MB 28a25c20dc8e
model-00012-of-000030.safetensorsWeights7.1 MB a76519434498
model-00013-of-000030.safetensorsWeights7.1 MB cbcc2920cf28
model-00014-of-000030.safetensorsWeights7.1 MB 525731cf4540
model-00015-of-000030.safetensorsWeights7.1 MB d9d4af54bebb
model-00016-of-000030.safetensorsWeights7.1 MB 9fb1409ac3f6
model-00017-of-000030.safetensorsWeights7.1 MB b3b5073f8efa
model-00018-of-000030.safetensorsWeights7.1 MB c1a9c21fcecb
model-00019-of-000030.safetensorsWeights7.1 MB f21268d6f429
model-00020-of-000030.safetensorsWeights7.1 MB b139e038a4bb
model-00021-of-000030.safetensorsWeights7.1 MB a0abcada3bce
model-00022-of-000030.safetensorsWeights7.1 MB 389667f54b9b
model-00023-of-000030.safetensorsWeights7.1 MB 162cde7b303d
model-00024-of-000030.safetensorsWeights7.1 MB 14babdebbe15
model-00025-of-000030.safetensorsWeights7.1 MB a5881cb48aa3
model-00026-of-000030.safetensorsWeights7.1 MB 6c0a0276df4f
model-00027-of-000030.safetensorsWeights7.1 MB 8893eab210cb
model-00028-of-000030.safetensorsWeights7.1 MB f530da0a0408
model-00029-of-000030.safetensorsWeights7.1 MB d322bfcc7216
model-00030-of-000030.safetensorsWeights7.1 MB 6956e2cae336
config.jsonConfiguration711 B
generation_config.jsonConfiguration113 B
model.safetensors.index.jsonConfiguration29.0 KB
special_tokens_map.jsonConfiguration666 B
README.mdDocumentation8.1 KB
README_zh.mdDocumentation7.4 KB
download.pngOther797.1 KB ae951254abbe
eval/pred_Qwen_Qwen2.5-0.5B-Instruct_flores_dev.jsonlOther848.8 KB
eval/pred_Qwen_Qwen2.5-0.5B-Instruct_floresplus_devtest.jsonlOther883.3 KB
eval/pred_Qwen_Qwen3-0.6B_flores_dev.jsonlOther852.7 KB
eval/pred_Qwen_Qwen3-0.6B_floresplus_devtest.jsonlOther886.0 KB
eval/pred_haidass-8M-trans-5ep-e4_flores_dev.jsonlOther853.8 KB
eval/pred_haidass-8M-trans-5ep-e4_floresplus_devtest.jsonlOther886.9 KB
eval/pred_haidass-drafter-8M_flores_dev.jsonlOther880.5 KB
eval/pred_haidass-drafter-8M_floresplus_devtest.jsonlOther918.8 KB
eval/pred_m2m100_418M_flores_dev.jsonlOther850.6 KB
eval/pred_m2m100_418M_floresplus_devtest.jsonlOther884.1 KB
eval/pred_nllb-200-distilled-600M_flores_dev.jsonlOther822.9 KB
eval/pred_nllb-200-distilled-600M_floresplus_devtest.jsonlOther858.2 KB
eval/pred_opus-mt-en-zh_flores_dev.jsonlOther409.8 KB
eval/pred_opus-mt-en-zh_floresplus_devtest.jsonlOther424.6 KB
eval/pred_opus-mt-zh-en_flores_dev.jsonlOther437.4 KB
eval/pred_opus-mt-zh-en_floresplus_devtest.jsonlOther454.6 KB
eval/pred_tencent_HY-MT1.5-1.8B_flores_dev.jsonlOther889.7 KB
eval/pred_tencent_HY-MT1.5-1.8B_floresplus_devtest.jsonlOther928.0 KB
.gitattributesRepository1.6 KB
tokenizer.modelTokenizer1.3 MB dddb2e3e527f
tokenizer_config.jsonTokenizer9.7 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
286.2 MB
Download from DALab

Released by DALab through its official repository on Hugging Face. Read the license.

Memory Requirements

PrecisionWeights in memory
As published286.2 MB
16-bit0.3 GB
8-bit0.1 GB
4-bit0.1 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About Haidass-Translate-143M

How much GPU memory does Haidass-Translate-143M need?

About 0.3 GB at 16-bit and 0.1 GB at 4-bit: the weights (143M parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run Haidass-Translate-143M on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use Haidass-Translate-143M commercially?

Yes. Haidass-Translate-143M is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

What is Haidass-Translate-143M's context length?

4,096 tokens, from the maximum position embeddings in its published configuration.

Similar Models

English | 中文 The instruction-tolerant sibling of DALabCommunity/Haidass-Translate-143M: same 143M zh⇄en translation training, plus 9.1% cleaned general-domain data (STEPFUN ShareGPT) mixed in. Translation scores are within 0.3 BLEU of the pure-translation version, and the model retains limited general instruction-following ability that the pure-translation version does not have. Drafter-143M: a control model with identical configuration, data and training recipe, except that it starts from random initialization instead of the pretrained base — used to quantify the contribution of base-model pretraining. OPUS-MT models are single-directional — one independent 78M model per direction; "-"…

Open weights apache-2.0 143M parameters 4,096 tokens

Model · Text generation

gpt2

OpenAI community

Test the whole generation capabilities here: https://transformer.huggingface.co/doc/gpt2-large Pretrained model on English language using a causal language modeling (CLM) objective. It was introduced in and first released at this page. model. Content from this model card has been written by the Hugging Face team to complete the information they provided and give specific examples of bias. GPT-2 is a transformers model pretrained on a very large corpus of English data in a self-supervised fashion. This means it was pretrained on the raw texts only, with no humans labelling them in any way (which is why it can use lots of publicly available data) with an automatic process to generate inputs…

Open weights mit 137M parameters transformers

SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters. They are capable of solving a wide range of tasks while being lightweight enough to run on-device. More details in our paper: https://arxiv.org/abs/2502.02737 SmolLM2 demonstrates significant advances over its predecessor SmolLM1, particularly in instruction following, knowledge, reasoning. The 135M model was trained on 2 trillion tokens using a diverse dataset combination: FineWeb-Edu, DCLM, The Stack, along with new filtered datasets we curated and will release soon. We developed the instruct version through supervised fine-tuning (SFT) using a combination of public datasets and our…

Open weights apache-2.0 135M parameters 8,192 tokens transformers

SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters. They are capable of solving a wide range of tasks while being lightweight enough to run on-device. More details in our paper https://arxiv.org/abs/2502.02737 SmolLM2 demonstrates significant advances over its predecessor SmolLM1, particularly in instruction following, knowledge, reasoning. The 135M model was trained on 2 trillion tokens using a diverse dataset combination: FineWeb-Edu, DCLM, The Stack, along with new filtered datasets we curated and will release soon. We developed the instruct version through supervised fine-tuning (SFT) using a combination of public datasets and our own…

Open weights apache-2.0 135M parameters 8,192 tokens transformers

This model is a custom-code derivative of AxiomicLabs/GPT-X2-125M, adapted for experimental long-context causal language modeling and architecture research. The repository includes a Hugging Face Transformers-compatible GPT-X2 implementation with optional Symplectic Metric-RoPE Governor support and training utilities built around CIxOpt, a heterogeneous optimizer developed for efficient parameter routing across large projection matrices, sensitive normalization parameters, and optional governor modules. The model is intended as a research checkpoint for compact long-context generation, positional encoding experiments, optimizer testing, and continued fine-tuning. This implementation uses a…

Open weights apache-2.0 126M parameters 32,768 tokens transformers