Single-adapter baseline that mixes arithmetic and logic capabilities in one Qwen2.5-1.5B LoRA.
This repository contains the monolithic comparison model used in the Socratic Routing study. Unlike the routed setup, this model keeps math and logic adaptation in one adapter rather than distributing them across specialized components.
Across the two completed seeds currently available for the mixed Socratic benchmark, this monolithic model achieved:
This makes it a balanced baseline: clearly stronger than the raw 1.5B base model, but weaker than the specialist-routed setup on the strongest completed routed run.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base_model = AutoModelForCausalLM.from_pretrained(
5 "Qwen/Qwen2.5-1.5B", device_map="auto", torch_dtype="auto"
6)
7tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-1.5B")
8
9model = PeftModel.from_pretrained(
10 base_model,
11 "dexmac/progressive-cognitive-logic-dream-lora-en",
12 subfolder="lora_adapters"
13)