inclusionAI/Rubicon-Preview

Model

Rubicon

25

5 commits

1 linked in READMEs

updated Aug 19, 2025

See the code

README

Rubicon

πŸ“„ Paper β€’ πŸ€— Model

This is the model card for Rubicon-preview, a 30B-A3B parameter model trained with a novel reinforcement learning framework using "rubric anchors" to excel at open-ended, creative, and humanities-centric tasks.


Highlights

We introduce Rubicon, a novel framework using rubric anchors for reinforcement learning. Our model, Rubicon-preview, demonstrates the following key highlights:

  • Token-Efficient Performance: Achieves a +5.2% absolute improvement on subjective, humanities-centric tasks with only 5K training samples, outperforming a 671B DeepSeek-V3 model.
  • Stylistic Controllability: Leverages rubric anchors to precisely guide output style, producing responses that are more human-like, emotionally expressive, and less formulaic.
  • Preservation of General Abilities: Avoids performance degradation on general tasksβ€”a common side effect of specialized RLβ€”while delivering additional gains on reasoning benchmarks like AIME 2024 (+4.1%).

Performance

Our rubric-based RL approach yields significant gains on open-ended, humanities-centric benchmarks while preserving and even enhancing performance on general and reasoning tasks.

Humanities & Open-Ended Evaluation

Rubicon-preview achieves a +5.21% average absolute improvement over its base model on a diverse set of subjective benchmarks. Notably, it surpasses the much larger DeepSeek-V3-671B model by +2.42% on average.

ModelC.WWritingJudgeEQIFECollieIFSAvg
Qwen3-30B-A3B77.8275.6556.2073.3583.5535.7754.6865.29
Rubicon-preview81.8980.1169.2079.5581.7040.2760.7970.50
Ξ” Improvement↑4.07↑4.46↑13.00↑6.20↓1.85↑4.50↑6.11↑5.21
DeepSeek-V3-671B80.1074.0861.3075.6081.8942.6960.9268.08

General & Reasoning Abilities

The model maintains its core capabilities without degradation. It shows notable improvements on math reasoning benchmarks like AIME and enhances performance across several general benchmarks.

Reasoning

ModelAIME24AIME25Math500GPQA-DLCBv5Avg
Qwen3-30B-A3B77.5070.0094.7563.0063.7773.80
Rubicon-preview81.6770.8394.5560.3559.4373.37

General

ModelMMLUIQ-EQHSSCCQSIQAAvg
Qwen3--30B-A3B79.5368.7577.5577.7279.5273.6478.16
Rubicon-preview79.8375.0077.7578.1780.7075.7978.85

Usage

Below are code snippets to get quickly started with running the model.

Installation

First, install the necessary libraries. We recommend a recent version of Transformers.

pip install transformers torch

Quick Start with Python

You can use the model for text generation with just a few lines of code.

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_name = "inclusionAI/Rubicon-Preview"

# Load the tokenizer and the model
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype=torch.bfloat16, # or "auto"
    device_map="auto"
)

# Prepare the model input using the chat template
prompt = "Is there true love in this world?"
messages = [
    {"role": "user", "content": prompt}
]

# Apply the chat template
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)

# Conduct text completion
generated_ids = model.generate(
    **model_inputs,
    max_new_tokens=512,
    do_sample=True,
    temperature=0.6,
    top_p=0.95,
)
output_ids = generated_ids[0][len(model_inputs.input_ids[0]):]
content = tokenizer.decode(output_ids, skip_special_tokens=True)

print("Generated Response:\n", content)

Citation

If you use Rubicon in your research, please cite our paper:

@article{Rubicon,
    title = {Reinforcement Learning with Rubric Anchors},
    author = {Huang, Zenan and Zhuang, Yihong and Lu, Guoshan and Qin, Zeyu and Xu, Haokai and Zhao, Tianyu and Peng, Ru and Hu, Jiaqi and Shen, Zhanming and Hu, Xiaomeng and Gu, Xijun and Tu, Peiyi and Liu, Jiaxin and Chen, Wenyu and Fu, Yuzhuo and Fan, Zhiting and Gu, Yanmei and Wang, Yuanyuan and Yang, Zhengkai and Li, Jianguo and Zhao, Junbo},
    journal = {arXiv preprint arXiv:2508.12790},
    year = {2025}
}
conversational
endpoints_compatible
qwen3_moe
safetensors
text-generation
transformers

Contributors

lccurious

3 commits

grason-lu

1 commits

m1ngcheng

1 commits

inclusionAI/Rubicon-Preview

Model

Rubicon

25

5 commits

1 linked in READMEs

updated Aug 19, 2025

See the code

README

Rubicon

πŸ“„ Paper β€’ πŸ€— Model

This is the model card for Rubicon-preview, a 30B-A3B parameter model trained with a novel reinforcement learning framework using "rubric anchors" to excel at open-ended, creative, and humanities-centric tasks.


Highlights

We introduce Rubicon, a novel framework using rubric anchors for reinforcement learning. Our model, Rubicon-preview, demonstrates the following key highlights:

  • Token-Efficient Performance: Achieves a +5.2% absolute improvement on subjective, humanities-centric tasks with only 5K training samples, outperforming a 671B DeepSeek-V3 model.
  • Stylistic Controllability: Leverages rubric anchors to precisely guide output style, producing responses that are more human-like, emotionally expressive, and less formulaic.
  • Preservation of General Abilities: Avoids performance degradation on general tasksβ€”a common side effect of specialized RLβ€”while delivering additional gains on reasoning benchmarks like AIME 2024 (+4.1%).

Performance

Our rubric-based RL approach yields significant gains on open-ended, humanities-centric benchmarks while preserving and even enhancing performance on general and reasoning tasks.

Humanities & Open-Ended Evaluation

Rubicon-preview achieves a +5.21% average absolute improvement over its base model on a diverse set of subjective benchmarks. Notably, it surpasses the much larger DeepSeek-V3-671B model by +2.42% on average.

ModelC.WWritingJudgeEQIFECollieIFSAvg
Qwen3-30B-A3B77.8275.6556.2073.3583.5535.7754.6865.29
Rubicon-preview81.8980.1169.2079.5581.7040.2760.7970.50
Ξ” Improvement↑4.07↑4.46↑13.00↑6.20↓1.85↑4.50↑6.11↑5.21
DeepSeek-V3-671B80.1074.0861.3075.6081.8942.6960.9268.08

General & Reasoning Abilities

The model maintains its core capabilities without degradation. It shows notable improvements on math reasoning benchmarks like AIME and enhances performance across several general benchmarks.

Reasoning

ModelAIME24AIME25Math500GPQA-DLCBv5Avg
Qwen3-30B-A3B77.5070.0094.7563.0063.7773.80
Rubicon-preview81.6770.8394.5560.3559.4373.37

General

ModelMMLUIQ-EQHSSCCQSIQAAvg
Qwen3--30B-A3B79.5368.7577.5577.7279.5273.6478.16
Rubicon-preview79.8375.0077.7578.1780.7075.7978.85

Usage

Below are code snippets to get quickly started with running the model.

Installation

First, install the necessary libraries. We recommend a recent version of Transformers.

pip install transformers torch

Quick Start with Python

You can use the model for text generation with just a few lines of code.

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_name = "inclusionAI/Rubicon-Preview"

# Load the tokenizer and the model
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype=torch.bfloat16, # or "auto"
    device_map="auto"
)

# Prepare the model input using the chat template
prompt = "Is there true love in this world?"
messages = [
    {"role": "user", "content": prompt}
]

# Apply the chat template
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)

# Conduct text completion
generated_ids = model.generate(
    **model_inputs,
    max_new_tokens=512,
    do_sample=True,
    temperature=0.6,
    top_p=0.95,
)
output_ids = generated_ids[0][len(model_inputs.input_ids[0]):]
content = tokenizer.decode(output_ids, skip_special_tokens=True)

print("Generated Response:\n", content)

Citation

If you use Rubicon in your research, please cite our paper:

@article{Rubicon,
    title = {Reinforcement Learning with Rubric Anchors},
    author = {Huang, Zenan and Zhuang, Yihong and Lu, Guoshan and Qin, Zeyu and Xu, Haokai and Zhao, Tianyu and Peng, Ru and Hu, Jiaqi and Shen, Zhanming and Hu, Xiaomeng and Gu, Xijun and Tu, Peiyi and Liu, Jiaxin and Chen, Wenyu and Fu, Yuzhuo and Fan, Zhiting and Gu, Yanmei and Wang, Yuanyuan and Yang, Zhengkai and Li, Jianguo and Zhao, Junbo},
    journal = {arXiv preprint arXiv:2508.12790},
    year = {2025}
}
conversational
endpoints_compatible
qwen3_moe
safetensors
text-generation
transformers

Contributors

lccurious

3 commits

grason-lu

1 commits

m1ngcheng

1 commits