openbmb / JustRL-II-base-model

huggingface.co
Total runs: 180
24-hour runs: 21
7-day runs: 120
30-day runs: 180
Model's Last Updated: September 07 2026
text-generation

Introduction of JustRL-II-base-model

Model Details of JustRL-II-base-model

JustRL-II Base Model

This is the RL initialization checkpoint used in the blog JustRL II: Scaling Small LLMs to 128K Reasoning with a Critic ( 中文版 ).

It is the starting point of the mathematical-reasoning case study in that blog — the checkpoint that every run there (the standard-GRPO baseline, the full JustRL II recipe, and all ablations) is initialized from and evaluated against. It is not the post-RL model. We release it so that the blog's data pipeline and training recipe can be reproduced from the exact same starting weights.

What this checkpoint is
  • A small language model that has already been trained to produce long chain-of-thought (thinking) responses. It emits its reasoning inside <think> ... </think> before the final answer.
  • Before any RL, it scores about 61% on AIME 2025 under the blog's evaluation protocol (average over sampled responses, 128k-token generation budget).
  • Starting from this checkpoint, the full JustRL II recipe reaches 81% on AIME 2025 in ~300 RL steps, while a standard GRPO baseline on the same data plateaus around 74% (see Figures 1, 2 and 8 of the blog).
  • The blog's difficulty-recalibration step (Stage 3 of the data pipeline) is computed by rolling out this checkpoint 8 times per problem, so the released training set's difficulty tiers refer to this model's pass rates.
Files
File Notes
pytorch_model.bin bf16 weights, single file
config.json Llama-style architecture ( LlamaForCausalLM ), loads with stock transformers
tokenizer.json , tokenizer_config.json , special_tokens_map.json tokenizer
chat_template.jinja chat template with thinking-mode support ( enable_thinking )

Two end-of-sequence ids are configured ( eos_token_id = [1, 130073] ); pass both to your generation call or serving engine. config.json ships with max_position_embeddings = 65536 ; the RL runs in the blog use a 128k-token generation budget — refer to the blog for the long-context serving setup used there.

Usage
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "openbmb/JustRL-II-base-model"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id, torch_dtype=torch.bfloat16, device_map="auto"
)

messages = [{"role": "user", "content": "What is the sum of all positive divisors of 360? Think step by step."}]
text = tokenizer.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True, enable_thinking=True
)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
inputs.pop("token_type_ids", None)

out = model.generate(
    **inputs,
    max_new_tokens=8192,
    do_sample=True,
    temperature=1.0,
    eos_token_id=[tokenizer.eos_token_id, 130073],
)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=False))

For evaluation or RL rollouts, serve it with vLLM or SGLang as a standard Llama-architecture model, e.g.

vllm serve openbmb/JustRL-II-base-model --dtype bfloat16
Intended use
  • Reproducing the JustRL II recipe and its ablations from the same initialization.
  • Research on long-CoT RL for small models: credit assignment, critic diagnostics, data difficulty calibration.

This checkpoint has not been aligned for general assistant use and has only been evaluated on mathematical reasoning. It may produce very long outputs; set a generation budget appropriate to your hardware.

The JustRL II recipe (summary)

The blog trains this checkpoint with a critic-equipped GRPO recipe:

  • Data : a three-stage pipeline audits ~100k open-source math problems (DAPO-Math, DeepScaleR, DeepMath) for solvability, re-checks labels with independent strong-model solutions, and removes problems this checkpoint already solves 8/8 — leaving 32,412 problems in the training set.
  • Algorithm : GRPO's group structure and dynamic sampling are retained; a learned value model (initialized from the policy, bias calibrated to the pool pass rate) provides token-level advantages through GAE with a length-adaptive λ; tail-only overlong control limits excessive rollout length.
  • Rollouts : 8 samples per prompt at temperature 1.0 with a 128k-token budget, graded by a variant of math-verify.

See the blog for the full specification, ablations, and critic diagnostics.

Citation
@misc{justrl2,
  title  = {JustRL II: Scaling Small LLMs to 128K Reasoning with a Critic},
  author = {Pan, Haoxuan and Zhou, Chuyue and Li, Xin and others},
  year   = {2026},
  howpublished = {\url{https://panhaoxuan.notion.site/justrl-ii-scaling-small-llms-to-128k-reasoning-with-a-critic}}
}

Runs of openbmb JustRL-II-base-model on huggingface.co

180
Total runs
21
24-hour runs
78
3-day runs
120
7-day runs
180
30-day runs

More Information About JustRL-II-base-model huggingface.co Model

JustRL-II-base-model huggingface.co

JustRL-II-base-model huggingface.co is an AI model on huggingface.co that provides JustRL-II-base-model's model effect (), which can be used instantly with this openbmb JustRL-II-base-model model. huggingface.co supports a free trial of the JustRL-II-base-model model, and also provides paid use of the JustRL-II-base-model. Support call JustRL-II-base-model model through api, including Node.js, Python, http.

JustRL-II-base-model huggingface.co Url

https://huggingface.co/openbmb/JustRL-II-base-model

openbmb JustRL-II-base-model online free

JustRL-II-base-model huggingface.co is an online trial and call api platform, which integrates JustRL-II-base-model's modeling effects, including api services, and provides a free online trial of JustRL-II-base-model, you can try JustRL-II-base-model online for free by clicking the link below.

openbmb JustRL-II-base-model online free url in huggingface.co:

https://huggingface.co/openbmb/JustRL-II-base-model

JustRL-II-base-model install

JustRL-II-base-model is an open source model from GitHub that offers a free installation service, and any user can find JustRL-II-base-model on GitHub to install. At the same time, huggingface.co provides the effect of JustRL-II-base-model install, users can directly use JustRL-II-base-model installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

JustRL-II-base-model install url in huggingface.co:

https://huggingface.co/openbmb/JustRL-II-base-model

Url of JustRL-II-base-model

JustRL-II-base-model huggingface.co Url

Provider of JustRL-II-base-model huggingface.co

openbmb
ORGANIZATIONS

Other API from openbmb

huggingface.co

Total runs: 200.2K
Run Growth: 91.4K
Growth Rate: 45.63%
Updated:October 05 2025
huggingface.co

Total runs: 134.8K
Run Growth: -3.0K
Growth Rate: -2.19%
Updated:March 10 2026
huggingface.co

Total runs: 117.8K
Run Growth: 4.9K
Growth Rate: 4.17%
Updated:September 15 2025
huggingface.co

Total runs: 112.2K
Run Growth: 89.6K
Growth Rate: 79.87%
Updated:May 10 2026
huggingface.co

Total runs: 106.9K
Run Growth: -45.2K
Growth Rate: -42.32%
Updated:June 13 2025
huggingface.co

Total runs: 25.5K
Run Growth: 411
Growth Rate: 1.61%
Updated:October 24 2025
huggingface.co

Total runs: 20.0K
Run Growth: 1.8K
Growth Rate: 8.78%
Updated:October 24 2025
huggingface.co

Total runs: 19.9K
Run Growth: 406
Growth Rate: 2.04%
Updated:January 15 2025
huggingface.co

Total runs: 11.5K
Run Growth: 10.4K
Growth Rate: 90.57%
Updated:May 07 2026
huggingface.co

Total runs: 9.9K
Run Growth: -3.3K
Growth Rate: -33.42%
Updated:June 02 2023
huggingface.co

Total runs: 7.7K
Run Growth: -4.1K
Growth Rate: -52.99%
Updated:February 27 2025
huggingface.co

Total runs: 6.5K
Run Growth: 523
Growth Rate: 8.06%
Updated:January 14 2026
huggingface.co

Total runs: 5.4K
Run Growth: 5.4K
Growth Rate: 99.14%
Updated:June 10 2025
huggingface.co

Total runs: 5.2K
Run Growth: 3.7K
Growth Rate: 70.38%
Updated:October 20 2025
huggingface.co

Total runs: 4.8K
Run Growth: 2.7K
Growth Rate: 56.92%
Updated:November 04 2024
huggingface.co

Total runs: 3.1K
Run Growth: -6.4K
Growth Rate: -205.33%
Updated:September 09 2026
huggingface.co

Total runs: 1.4K
Run Growth: 79
Growth Rate: 5.80%
Updated:January 15 2025
huggingface.co

Total runs: 1.0K
Run Growth: 153
Growth Rate: 14.93%
Updated:September 19 2025
huggingface.co

Total runs: 922
Run Growth: 624
Growth Rate: 67.68%
Updated:May 14 2024
huggingface.co

Total runs: 891
Run Growth: 76
Growth Rate: 8.53%
Updated:June 27 2023
huggingface.co

Total runs: 847
Run Growth: 48
Growth Rate: 5.67%
Updated:August 24 2023
huggingface.co

Total runs: 436
Run Growth: 372
Growth Rate: 85.32%
Updated:February 12 2026
huggingface.co

Total runs: 416
Run Growth: -75
Growth Rate: -18.03%
Updated:October 14 2023
huggingface.co

Total runs: 237
Run Growth: -156
Growth Rate: -67.53%
Updated:June 14 2025
huggingface.co

Total runs: 212
Run Growth: 37
Growth Rate: 17.45%
Updated:February 21 2024
huggingface.co

Total runs: 177
Run Growth: 47
Growth Rate: 26.55%
Updated:June 11 2025
huggingface.co

Total runs: 174
Run Growth: 48
Growth Rate: 27.59%
Updated:February 21 2024