Model reference · open weights

Sequential_Helium

Available as managed deployment LLMs kyutai Text gen 1 variants 240 dl/mo

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

Makerkyutai
TypeLanguage models
TaskText gen
Parameters (lead)6.3B
Runs withtransformers
Released2026-02-03
Popularity240 downloads / month
LicenceOpen weights

About

What Sequential_Helium is

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.

Model Details

  • Developed by: Kyutai
  • Model type: Large Language Model (Decoder-only)
  • Language(s): Bulgarian, Czech, Danish, German, Greek, English, Spanish, Estonian, Finnish, French, Irish, Croatian, Hungarian, Italian, Lithuanian, Latvian, Maltese, Dutch, Polish, Portuguese, Romanian, Slovak, Slovenian, Swedish.
  • License: CC-BY-SA-4.0
  • Base Model: Helium 2B Architecture (scaled)

Uses

Direct Use

The sequential variant is engineered to improve factuality on recent knowledge. To support this research, we developed:

  • KairosQA: A benchmark of 7,000+ temporally grounded questions.
  • Kairos Evaluation Code: Tools to analyze how models associate facts with specific time periods.

Out-of-Scope Use

  • Instruction Following: These are base models and have not undergone SFT or RLHF. They will not respond well to direct prompts or "chat" style interactions without further tuning.
  • Multilingual: The model should not be used in other languages than the ones on which it was trained.
  • Malicious Intent: Any illegal or harmful activity is strictly prohibited.

Bias, Risks, and Limitations

Helium 6B is a base model and has not been aligned with human preferences.

  • Content: It may generate biased, incorrect, or harmful content.
  • Recommendation: Do not use for downstream applications without rigorous alignment (SFT/RLHF) and risk mitigation.

How to Get Started

Loading the Base Model

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"
)

Loading Temporal Checkpoints

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:

SubfolderN. TokensCut-Off dateMin. dateShuffled ?
Main ("")2.5T20252018no
sequential_2024*2.2T20242018no
sequential_2023*1.9T20232018no
sequential_2022*1.6T20222018no
sequential_2021*1.2T20212018no
sequential_2020*0.9T20202018no
shuffle_eq_20200.9T20242020yes
shuffle_eq_20242.2T20242020yes
shuffle_eq_20252.5T20242020yes

Training Details

Training Data

Helium 6B checkpoints were trained on data from Common Crawl, which was preprocessed with the dactory library.

Evaluation

Testing Data

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.

English Results after 2.5T training tokens

BenchmarkSequential-Helium 6BShuffled-Helium 6B
MMLU59.256.9
ARC E87.786.6
ARC C74.672.3
OBQA74.072.8
CSQA73.674.2
PIQA79.980.3
SIQA66.967.6
HS78.981.2
WG73.273.3
BoolQA84.083.7
OLMES77.077.0

Temporal improvements

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.

Licensing

Helium 6B models are licensed under the CC-BY-SA 4.0 license.

Citations

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

Call it like any OpenAI endpoint

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.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms