LoRA adapter specialized for compact logical reasoning on top of Qwen2.5-1.5B.
This adapter was trained as the logic specialist component of the Progressive Cognitive Architecture project. It targets logic-focused tasks such as syllogistic validity, conditional reasoning, boolean evaluation, and short-form symbolic transformations.
On the focused Socratic benchmark used in this project, the logic specialist consistently improved logical reasoning over the 1.5B base model.
These numbers come from the project evaluation artifacts available in the Progressive Cognitive results dataset and should be interpreted as research results rather than a production benchmark.
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-specialist-en",
12 subfolder="lora_adapters"
13)