Model reference · open weights

LLaDA2.0-flash

Available as managed deployment LLMs inclusionAI Text gen 1 variants 3k dl/mo

LLaDA2.0-flash is an open-weight language model from inclusionAI. 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

MakerinclusionAI
TypeLanguage models
TaskText gen
Parameters (lead)102.9B
Context32k tokens
Runs withtransformers
Released2025-11-25
Popularity3k downloads / month
LicenceOpen weights

About

What LLaDA2.0-flash is

LLaDA2.0-flash is a diffusion language model featuring a 100BA6B Mixture-of-Experts (MoE) architecture. As an enhanced, instruction-tuned iteration of the LLaDA2.0 series, it is optimized for practical applications.


BenchmarkQwen3-30B-A3B-Instruct-2507Ling-flash-2.0LLaDA2.0-flash-previewLLaDA2.0-flash
Average79.4778.0371.9279.32
Knowledge
MMLU87.1387.9883.1587.69
MMLU-Pro74.2376.8449.2273.36
GPQA57.3467.1246.5961.98
arc-c95.8195.0893.9095.93
CMMLU86.3686.5967.5385.13
C-EVAL88.1788.0366.5486.75
GAOKAO-Bench94.5393.2486.1293.90
Reasoning
SQuAD 2.089.5181.3285.6190.00
DROP87.5788.3279.4987.90
KOR-Bench68.0068.9637.2664.24
HellaSwag86.3181.5986.0084.97
Coding
CRUXEval-O86.7582.7561.8885.12
MBPP86.6585.0177.7588.29
MultiPL-E70.6765.7662.4374.87
HumanEval93.2985.9880.4994.51
Bigcodebench-Full41.4940.7030.4441.58
LiveCodeBench41.6344.1128.5842.29
Spider81.7980.5881.3782.49
Math
GSM8K96.3695.4589.0196.06
MATH96.7096.173.5095.44
OlympiadBench77.5976.1947.7874.07
AIME 202561.8855.8923.3360.00
Agent & Alignment
BFCL_Live73.1967.5774.1175.43
IFEval-strict -prompt84.2981.5262.5081.70

🚀 Performance Highlights

  • Leading MoE Architecture: The open-source Mixture-of-Experts (MoE) diffusion large language model continually trained on the Ling2.0 series with approximately 20 trillion tokens.
  • Efficient Inference: With 100 billion total parameters, only 6.1 billion are activated during inference. LLaDA2.0-flash significantly reduces computational costs while outperforming open-source dense models of similar scale.
  • Impressive Performance on Code & Complex Reasoning: Excels in tasks such as code generation and advanced mathematical reasoning, demonstrating strong reasoning capabilities.
  • Tool Use: Supports tool calling and achieves excellent performance in complex agent-based tasks.
  • Open & Extensible: Fully open-source with commitment to transparency. We plan to release a leading inference framework in the future and continue investing in cutting-edge areas like diffusion LLMs (dLLM) to drive disruptive innovation.

🗺️ What's Next

  • Supercharged Reasoning with LLaDA 2.0: LLaDA 2.0 series will be fine-tuned with Reinforcement Learning, unlocking a new level of sophisticated reasoning and problem-solving abilities.
  • Tools for Innovators: The model was finetuned on the dFactory framework using Fully Sharded Data Parallel (FSDP2). We have begun open-sourcing dFactory and will continuously release our advanced post-training technologies. Whether you want to master the current model or build your own customized versions, you'll have the tools you need. Stay tuned for more updates!

📦 Model Variants

Model IDDescriptionHugging Face Link
inclusionAI/LLaDA2.0-miniInstruction-tuned model, ready for downstream applications.🤗 Model Card
inclusionAI/LLaDA2.0-flashInstruction-tuned model, ready for downstream applications.🤗 Model Card

🔍 Model Overview

LLaDA2.0-flash has the following specifications:

  • Type: Mixture-of-Experts (MoE) Diffusion Language Model
  • Total Parameters (Non-Embedding): 100B
  • Number of Layers: 32
  • Attention Heads: 32
  • Context Length: 32,768 tokens
  • Position Embedding: Rotary (RoPE)
  • Vocabulary Size: 157,184

🤗 Hugging Face Transformers

Make sure you have transformers and its dependencies installed:

import torch
import torch.nn.functional as F
from transformers import AutoModelForCausalLM
from transformers import AutoTokenizer

model_path = "/path/to/LLaDA2.0-mini-preview"
device = "auto"
model = AutoModelForCausalLM.from_pretrained(
    model_path, trust_remote_code=True, device_map=device
)
model = model.to(torch.bfloat16)
model.eval()
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)

prompt = "Why does Camus think that Sisyphus is happy?"
input_ids = tokenizer.apply_chat_template(
    [{"role": "user", "content": prompt}],
    add_generation_prompt=True,
    tokenize=True,
    return_tensors="pt",
)
generated_tokens = model.generate(
    inputs=input_ids,
    eos_early_stop=True,
    gen_length=512,
    block_length=32,
    steps=32,
    temperature=0.0,
)
generated_answer = tokenizer.decode(
    generated_tokens[0],
    skip_special_tokens=True,
)
print(generated_answer)

Best Practices

To achieve optimal performance, we recommend the following settings:

  1. Sampling Parameters: We suggest using Temperature=0.0, block_length=32, and steps=32. Using a higher temperature value may occasionally result in language mixing and a slight decrease in model performance.

  2. Adequate Output Length: We recommend using an output length of 32768 tokens for most queries.


🌐 License

This project is licensed under the terms of the Apache License 2.0.


🤝 Contact & Collaboration

For questions, collaborations, or feedback, please reach out via Hugging Face or open an issue in the repository.

👉 Join us in advancing open, efficient, and intelligent language models!


Citation

@misc{bie2025llada20scalingdi

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 llada2-0-flash for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (llada2-0-flash 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":"llada2-0-flash","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