Views
No views yet
Note: This is a base model (not instruction-tuned). It is intended for benchmarking, text completion, and as a foundation for downstream fine-tuning (SFT / RLHF). For conversational or instruction-following use cases, please fine-tune on your own data.
| Benchmark | # Shots | 8B Baseline | 8B scale n=2 | 8B scale n=4 | 8B scale n=8 |
|---|---|---|---|---|---|
| BBH (EM) | 3-shot | 78.8 | 81.3 | 83.0 | 83.9 |
| MMLU (EM) | 5-shot | 79.8 | 80.9 | 81.9 | 82.2 |
| MBPP+ (Pass@1) | 1-shot | 66.7 | 69.4 | 68.7 | 69.4 |
| MATH (LLM-judge) | 4-shot | 56.0 | 58.2 | 60.0 | 61.1 |
| ARC-C | 25-shot | 93.9 | 94.3 | 94.4 | 94.7 |
| Hellaswag | 10-shot | 79.7 | 83.1 | 85.0 | 85.3 |
| GSM8K | 4-shot | 92.5 | 93.3 | 93.9 | 94.6 |
1python -m sglang.launch_server \
2 --model-path tencent/Sequential-Hidden-Decoding-8B-n2 \
3 --trust-remote-code \
4 --tp-size 1 \
5 --port 30000 --host 0.0.0.0 \
6 --chunked-prefill-size -1 \
7 --attention-backend fa3 \
8 --mem-fraction-static 0.82 \
9 --max-running-requests 32 \
10 --context-length 131072 \
11 --cuda-graph-max-bs 128 \
12 --cuda-graph-bs 1 2 4 8 16 32 64 1281from openai import OpenAI
2
3client = OpenAI(base_url="http://localhost:30000/v1", api_key="EMPTY")
4response = client.completions.create(
5 model="tencent/Sequential-Hidden-Decoding-8B-n2",
6 prompt="The meaning of life is",
7 max_tokens=128,
8 temperature=0,
9)
10print(response.choices[0].text)| Model | Scale | Embedding Params | Training Tokens |
|---|---|---|---|
| Sequential-Hidden-Decoding-8B-n2 | 2× | 1.9B | 75B |
| Sequential-Hidden-Decoding-8B-n4 | 4× | 3.1B | 150B |
| Sequential-Hidden-Decoding-8B-n8 | 8× | 5.6B | 187B |
1@article{hidden_decoding_2026,
2 title = {Hidden Decoding: Scaling Sequence Length in Pretraining},
3 year = {2026},
4 url = {https://welm.weixin.qq.com/posts/hidden_decoding/}
5}