AI SeedbankHelp preserve open and free AI for humanity's future

← All models

swiss-ai_Apertus-8B-Instruct-2509

swiss-ai · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 base_model:

  • swiss-ai/Apertus-8B-2509 pipeline_tag: text-generation library_name: transformers tags:
    • multilingual
    • compliant
    • swiss-ai
    • apertus

extra_gated_prompt: "### Apertus LLM Acceptable Use Policy \n(1.0 | September 1, 2025)\n"Agreement" The Swiss National AI Institute (SNAI) is a partnership between the two Swiss Federal Institutes of Technology, ETH Zurich and EPFL. \n\nBy using the Apertus LLM you agree to indemnify, defend, and hold harmless ETH Zurich and EPFL against any third-party claims arising from your use of Apertus LLM. \n\nThe training data and the Apertus LLM may contain or generate information that directly or indirectly refers to an identifiable individual (Personal Data). You process Personal Data as independent controller in accordance with applicable data protection law. SNAI will regularly provide a file with hash values for download which you can apply as an output filter to your use of our Apertus LLM. The file reflects data protection deletion requests which have been addressed to SNAI as the developer of the Apertus LLM. It allows you to remove Personal Data contained in the model output. We strongly advise downloading and applying this output filter from SNAI every six months following the release of the model. " extra_gated_fields: Your Name: text Country: country Affiliation: text geo: ip_location By clicking Submit below I accept the terms of use: checkbox extra_gated_button_content: Submit

Apertus

Table of Contents

  1. Model Summary
  2. How to use
  3. Evaluation
  4. Training
  5. Limitations
  6. Legal Aspects

Model Summary

Apertus is a 70B and 8B parameter language model designed to push the boundaries of fully-open multilingual and transparent models. The model supports over 1000 languages and long context, it uses only fully compliant and open training data, and achieves comparable performance to models trained behind closed doors.

The model is a decoder-only transformer, pretrained on 15T tokens with a staged curriculum of web, code and math data. The model uses a new xIELU activation function and is trained from scratch with the AdEMAMix optimizer. Post-training included supervised fine-tuning and alignment via QRPO.

Key features

  • Fully open model: open weights + open data + full training details including all data and training recipes
  • Massively Multilingual: 1811 natively supported languages
  • Compliant Apertus is trained while respecting opt-out consent of data owners (even retrospectivey), and avoiding memorization of training data

For more details refer to our technical report

How to use

The modeling code for Apertus is available in transformers v4.56.0 and later, so make sure to upgrade your transformers version. You can also load the model with the latest vLLM which uses transformers as a backend.

pip install -U transformers
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "swiss-ai/Apertus-8B-Instruct-2509"
device = "cuda"  # for GPU usage or "cpu" for CPU usage

# load the tokenizer and the model
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
).to(device)

# prepare the model input
prompt = "Give me a brief explanation of gravity in simple terms."
messages_think = [
    {"role": "user", "content": prompt}
]

text = tokenizer.apply_chat_template(
    messages_think,
    tokenize=False,
    add_generation_prompt=True,
)
model_inputs = tokenizer([text], return_tensors="pt", add_special_tokens=False).to(model.device)

# Generate the output
generated_ids = model.generate(**model_inputs, max_new_tokens=32768)

# Get and decode the output
output_ids = generated_ids[0][len(model_inputs.input_ids[0]) :]
print(tokenizer.decode(output_ids, skip_special_tokens=True))

[!TIP] We recommend setting temperature=0.8 and top_p=0.9 in the sampling parameters.

Long context processing

Apertus by default supports a context length up to 65,536 tokens.

Agentic Usage

Apertus supports tool use

Deployment

Deployment of the models is directly supported by the newest versions of Transformers, vLLM, SGLang, and also for running on-device with MLX,

Evaluation

Pretraining Evaluation: Performance (%) of Apertus models on general language understanding tasks (higher is better) compared to other pretrained models.

Model Avg ARC HellaSwag WinoGrande XNLI XCOPA PIQA
Fully Open Models
Apertus-8B 65.8 72.7 59.8 70.6 45.2 66.5 79.8
Apertus-70B 67.5 70.6 64.0 73.3 45.3 69.8 81.9
OLMo2-7B 64.0 72.9 60.4 74.5 40.4 55.2 80.9
OLMo2-32B 67.7 76.2 66.7 78.6 42.9 60.1 82.1
EuroLLM-1.7B 54.8 57.2 44.9 58.1 40.7 55.7 72.4
EuroLLM-9B 62.8 67.9 57.9 68.8 41.5 61.1 79.6
SmolLM2-1.7B 58.5 66.1 52.4 65.6 37.6 52.3 77.0
SmolLM3-3B 61.6 68.6 56.4 68.1 40.5 58.2 77.7
Poro-34B 61.7 65.7 57.9 70.6 41.6 56.0 78.5
Open-Weight Models
Llama3.1-8B 65.4 71.6 60.0 73.4 45.3 61.8 80.1
Llama3.1-70B 67.3 74.4 56.5 79.4 44.3 66.7 82.3
Qwen2.5-7B 64.4 69.6 60.1 72.8 43.3 61.7 78.7
Qwen2.5-72B 69.8 76.2 67.5 78.0 46.9 68.2 82.0
Qwen3-32B 67.8 75.6 64.0 73.8 44.4 67.9 80.9
Llama4-Scout-16x17B 67.9 74.7 66.8 73.2 43.5 67.7 81.2
GPT-OSS-20B 58.1 67.0 41.5 66.5 37.4 60.4 75.6

Many additional benchmark evaluations, for pretraining and posttraining phases, multilingual evaluations in around hundred languages, and long context evaluations are provided in Section 5 of the Apertus Tech Report

Training

Model

  • Architecture: Transformer decoder
  • Pretraining tokens: 15T
  • Precision: bfloat16

Software & hardware

  • GPUs: 4096 GH200
  • Training Framework: Megatron-LM
  • ...

Open resources

All elements used in the training process are made openly available

  • Training data reconstruction scripts: github.com/swiss-ai/pretrain-data
  • The training intermediate checkpoints are available on the different branches of this same repository

Limitations

Apertus can produce text on a variety of topics, but the generated content may not always be factually accurate, logically consistent, or free from biases present in the training data. These models should be used as assistive tools rather than definitive sources of information. Users should always verify important information and critically evaluate any generated content.

Legal Aspects

EU AI Act Transparency Documentation and Code of Practice

Data Protection and Copyright Requests

For removal requests of personally identifiable information (PII) or of copyrighted content, please contact the respective dataset owners or us directly

Output Filter for PII

  • Currently no output filter is provided.
  • Please check this site regularly for an output filter that can be used on top of the Apertus LLM. The filter reflects data protection deletion requests which have been addressed to us as the developer of the Apertus LLM. It allows you to remove Personal Data contained in the model output. We strongly advise downloading and applying this output filter from this site every six months.

Contact

To contact us, please send an email to [email protected]

Citation

@misc{swissai2025apertus,
  title={{Apertus: Democratizing Open and Compliant LLMs for Global Language Environments}},
  author={Alejandro Hernández-Cano and Alexander Hägele and Allen Hao Huang and Angelika Romanou and Antoni-Joan Solergibert and Barna Pasztor and Bettina Messmer and Dhia Garbaya and Eduard Frank Ďurech and Ido Hakimi and Juan García Giraldo and Mete Ismayilzada and Negar Foroutan and Skander Moalla and Tiancheng Chen and Vinko Sabolčec and Yixuan Xu and Michael Aerni and Badr AlKhamissi and Ines Altemir Marinas and Mohammad Hossein Amani and Matin Ansaripour and Ilia Badanin and Harold Benoit and Emanuela Boros and Nicholas Browning and Fabian Bösch and Maximilian Böther and Niklas Canova and Camille Challier and Clement Charmillot and Jonathan Coles and Jan Deriu and Arnout Devos and Lukas Drescher and Daniil Dzenhaliou and Maud Ehrmann and Dongyang Fan and Simin Fan and Silin Gao and Miguel Gila and María Grandury and Diba Hashemi and Alexander Hoyle and Jiaming Jiang and Mark Klein and Andrei Kucharavy and Anastasiia Kucherenko and Frederike Lübeck and Roman Machacek and Theofilos Manitaras and Andreas Marfurt and Kyle Matoba and Simon Matrenok and Henrique Mendoncça and Fawzi Roberto Mohamed and Syrielle Montariol and Luca Mouchel and Sven Najem-Meyer and Jingwei Ni and Gennaro Oliva and Matteo Pagliardini and Elia Palme and Andrei Panferov and Léo Paoletti and Marco Passerini and Ivan Pavlov and Auguste Poiroux and Kaustubh Ponkshe and Nathan Ranchin and Javi Rando and Mathieu Sauser and Jakhongir Saydaliev and Muhammad Ali Sayfiddinov and Marian Schneider and Stefano Schuppli and Marco Scialanga and Andrei Semenov and Kumar Shridhar and Raghav Singhal and Anna Sotnikova and Alexander Sternfeld and Ayush Kumar Tarun and Paul Teiletche and Jannis Vamvas and Xiaozhe Yao and Hao Zhao Alexander Ilic and Ana Klimovic and Andreas Krause and Caglar Gulcehre and David Rosenthal and Elliott Ash and Florian Tramèr and Joost VandeVondele and Livio Veraldi and Martin Rajman and Thomas Schulthess and Torsten Hoefler and Antoine Bosselut and Martin Jaggi and Imanol Schlag},
  year={2025},
  howpublished={\url{https://arxiv.org/abs/2509.14233}}
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:d02b178cfb0ca51d79a0f6d70bf6fac433c3c11f&dn=swiss-ai_Apertus-8B-Instruct-2509

Open magnet in torrent client · infohash d02b178cfb0ca51d79a0f6d70bf6fac433c3c11f

Files & hashes

PathSizesha1sha256
LICENSE.txt11.1 KB (11,394 B)822200dbf95a1677730dcf9bad5c7bd06b080f3c7f1e632ea726022e3f880d46aeb9b407a65131f44d8c563c15232e96aef50a4b
README.md10.6 KB (10,886 B)c13f2c6e1f9e122cf024f33b867e2c2b3836a528b1ff27fcfa05aecba7808a3ae4eb70f2df95a0bb1490fdbb2368ab021dfc160b
USAGE_POLICY.md1.1 KB (1,076 B)9b7baf46e2895729c76ac9e0a238dc23c18bab940f5b965a5c699391e1600ea6f71627fafd48737d1929dc14e4f1c918368306ff
chat_template.jinja14.3 KB (14,601 B)4a069c900918e05aa73e498d58986ad9a3f8743756f72c27fa2e565312a830b7315a455c79fb452fdbe7a5b7595d8a094f282b07
config.json901 B (901 B)aae33e0605271f3a5bad2b69a80466e343b94e709a2f0f01aa684c30097fbf0469ed002b5af2797231a6e3288622de16d2055d25
generation_config.json126 B (126 B)fd245b1d3398b6e4d50db12b27cc18d4dba45370e369bbb1bb3bdbf09bfad42a9ba4202eb06f19fd1eb12fb44d84aa75a5b7af3f
model-00001-of-00004.safetensors4.66 GB (4,999,776,656 B)7341df3b925a7a4dabd16f339ab572c75a3ddee73c0d9506c084975849cefc1410dbb0300eafc0f480a5fcbc3db8f54c10500912
model-00002-of-00004.safetensors4.55 GB (4,882,374,192 B)34e6f620d2c59db2eda515c30510f0b71e9b424fa934231fe465a8f4b0028454218d787f02b7cae3f91d886ca73b85ca368f2b21
model-00003-of-00004.safetensors4.63 GB (4,974,647,808 B)38276ad02304d2b5be109c071cb04baee29759a38c2a98c71209664b1e7c8a2df80782cac1a90cc11feda5cd5c5495c5dd9b584e
model-00004-of-00004.safetensors1.16 GB (1,249,928,160 B)683f1ceaeba03838bba8da2375751830e51b862a6417026ac38ffd73ae5683c568162982c722469683f8040665ddb0a5de6dd442
model.safetensors.index.json35.6 KB (36,480 B)0125ef3db5b515a9ab77717f41712e2a7f8ce2c3509b6d9d22987cf7b1067a7cc6b74b88cf0c8c2739748fe5e85a4da0f69ebf1a
special_tokens_map.json337 B (337 B)453f223b90b458547531b23aab565839075426c83a3f3af9c9cbc9cf89c719d3de130913dcd626ac5061cdf3cd9ff21728f9d58f
tokenizer.json16.3 MB (17,078,480 B)26ac9960f5efbf2e7e19566358a309fa206cd540bb201fb226cde11f66c3cf51c5344fb37b1611f00c21e75c324546d854eff2e1
tokenizer_config.json173.2 KB (177,337 B)eb4ce3336197e06989f295b5a33c368777884094b89e07508603d6e1f2c8642f366c2469063c3eddae0585f1e67934ee98498ab1

Cite this release

Canonical URL
https://aiseedbank.org/models/swiss-ai_Apertus-8B-Instruct-2509/
Slug
swiss-ai_Apertus-8B-Instruct-2509
Infohash
d02b178cfb0ca51d79a0f6d70bf6fac433c3c11f
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: swiss-ai_Apertus-8B-Instruct-2509.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryswiss-ai/Apertus-8B-Instruct-2509
Revision (pinned)b946d40447b2b597999b9c86d44bee0b452c919f
Fetched at2026-09-04T06:25:11Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T06:27:46Z

apache-2.015.02 GB (16,124,058,434 bytes)transformerssafetensorsapertustext-generationmultilingualcompliantswiss-aiconversationaleval-resultsendpoints_compatiblepaper: 2509.14233