CoolFace
Modelpublic

metacognitive-behavioral-tuning/Qwen3-0.6B-MBT-S

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes15downloads
Model Card

Qwen3-0.6B · MBT-S

MBT-S (main table) — final checkpoint (SFT → GRPO). Base: `Qwen/Qwen3-0.6B`. Paper: Metacognitive Behavioral Tuning of Large Language Models for Multi-Hop Question Answering.

  • —Method: MBT-S (Synthesis): base is SFT'd on gpt-oss-120b-synthesized 5-phase metacognitive traces, then GRPO.
  • —Base model: Qwen/Qwen3-0.6B
  • —Training: SFT (LR 1e-4, BS 128, HotpotQA) → GRPO
  • —Benchmarks: HotpotQA (ID), MuSiQue / 2WikiMultiHopQA (OOD)

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "metacognitive-behavioral-tuning/Qwen3-0.6B-MBT-S"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, dtype="bfloat16", device_map="auto")