Model reference · open weights
Sequential_Helium is an open-weight language model from kyutai. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | kyutai |
|---|---|
| Type | Language models |
| Task | Text gen |
| Parameters (lead) | 6.3B |
| Runs with | transformers |
| Released | 2026-02-03 |
| Popularity | 240 downloads / month |
| Licence | Open weights |
About
This repository houses the Helium 6B models, specifically designed to compare sequential pretraining on temporally ordered data against standard shuffled pretraining. This research aims to understand how the order of data affects a model's ability to retain facts and minimize chronological confusion.
The architecture is derived from Helium 2B.
The sequential variant is engineered to improve factuality on recent knowledge. To support this research, we developed:
Helium 6B is a base model and has not been aligned with human preferences.
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "kyutai/Sequential_Helium_6B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
device_map="auto"
)
To access a specific stage of training (e.g., the 2024 sequential checkpoint):
model = AutoModelForCausalLM.from_pretrained(
model_id,
subfolder='sequential_2024',
torch_dtype=torch.bfloat16,
device_map="auto"
)
The list of available checkpoints is disclosed below:
| Subfolder | N. Tokens | Cut-Off date | Min. date | Shuffled ? |
|---|---|---|---|---|
| Main ("") | 2.5T | 2025 | 2018 | no |
| sequential_2024* | 2.2T | 2024 | 2018 | no |
| sequential_2023* | 1.9T | 2023 | 2018 | no |
| sequential_2022* | 1.6T | 2022 | 2018 | no |
| sequential_2021* | 1.2T | 2021 | 2018 | no |
| sequential_2020* | 0.9T | 2020 | 2018 | no |
| shuffle_eq_2020 | 0.9T | 2024 | 2020 | yes |
| shuffle_eq_2024 | 2.2T | 2024 | 2020 | yes |
| shuffle_eq_2025 | 2.5T | 2024 | 2020 | yes |
Helium 6B checkpoints were trained on data from Common Crawl, which was preprocessed with the dactory library.
While our models are primarily designed to facilitate research on LLM temporality and base model dynamics—which may result in lower general performance compared to state-of-the-art models—we nonetheless evaluated them using the OLMES benchmark. This evaluation covers MMLU, ARC (Easy & Challenge), OpenBookQA, CommonSenseQA, PIQA, SIQA, HellaSwag, WinoGrande, and BoolQA.
| Benchmark | Sequential-Helium 6B | Shuffled-Helium 6B |
|---|---|---|
| MMLU | 59.2 | 56.9 |
| ARC E | 87.7 | 86.6 |
| ARC C | 74.6 | 72.3 |
| OBQA | 74.0 | 72.8 |
| CSQA | 73.6 | 74.2 |
| PIQA | 79.9 | 80.3 |
| SIQA | 66.9 | 67.6 |
| HS | 78.9 | 81.2 |
| WG | 73.2 | 73.3 |
| BoolQA | 84.0 | 83.7 |
| OLMES | 77.0 | 77.0 |
We underline in the paper Understanding Data Temporality Impact on Large Language Models Pre-training that our sequentially trained Helium 6B benefits from more up-to-date as tested on our KairosQA dataset.
Helium 6B models are licensed under the CC-BY-SA 4.0 license.
If you use one of these models, please cite:
@misc{pilchen2026understandingdatatemporalityimpact,
title={Understanding Data Temporality Impact on Large Language Models Pre-training},
author={Hippolyte Pilchen and Romain Fabre and Franck Signe Talla and Patrick Perez and Edouard Grave},
year={2026},
eprint={2605.22769},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2605.22769},
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys sequential-helium for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (sequential-helium below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"sequential-helium","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.