Views
No views yet
unsloth/Qwen3.5-0.8Btotal_reward = 10 × rigor × feasibility × fidelity × parsimony
+ efficiency_bonus + communication_bonus − penalties






| Metric | Baseline Scientist | Trained Scientist | Change |
|---|---|---|---|
| Average reward | 4.25 | 7.10 | +67% |
| Rounds to agreement | 4.1 | 2.8 | −32% |
| Invalid action rate | 15% | 4% | −73% |
| Agreement rate | 50% | 80% | +60% |
| Avg rigor score | 0.55 | 0.72 | +31% |
| Avg feasibility score | 0.52 | 0.78 | +50% |
| Avg fidelity score | 0.58 | 0.71 | +22% |
| Template | Domain | Example Task |
|---|---|---|
math_reasoning | Mathematics | Proof planning under deadline and review constraints |
ml_benchmark | Machine Learning | Model replication with compute and time budgets |
finance_trading | Finance | Backtest design under capital and risk limits |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen3.5-0.8B")
5model = PeftModel.from_pretrained(base_model, "ayushozha/replicalab-scientist-grpo-lora")
6tokenizer = AutoTokenizer.from_pretrained("ayushozha/replicalab-scientist-grpo-lora")
7
8# Use within the ReplicaLab environment for scientific negotiation1@misc{replicalab2026,
2 title = {ReplicaLab: Multi-Agent Constraint-Aware Planning for Scientific Replication},
3 author = {Ayush Ojha and Kian and Max and Kush},
4 year = 2026,
5 url = {https://github.com/Ayush10/replicalab-ai}
6}