How to use from
SGLang
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "metacognitive-behavioral-tuning/Qwen3-1.7B-MBT-S" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "metacognitive-behavioral-tuning/Qwen3-1.7B-MBT-S",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker images
docker run --gpus all \
    --shm-size 32g \
    -p 30000:30000 \
    -v ~/.cache/huggingface:/root/.cache/huggingface \
    --env "HF_TOKEN=<secret>" \
    --ipc=host \
    lmsysorg/sglang:latest \
    python3 -m sglang.launch_server \
        --model-path "metacognitive-behavioral-tuning/Qwen3-1.7B-MBT-S" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "metacognitive-behavioral-tuning/Qwen3-1.7B-MBT-S",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Qwen3-1.7B · MBT-S

MBT-S (main table) — final checkpoint (SFT → GRPO). Base: Qwen/Qwen3-1.7B. 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-1.7B
  • Training: SFT (LR 1e-4, BS 128, HotpotQA) → GRPO
  • Benchmarks: HotpotQA (ID), MuSiQue / 2WikiMultiHopQA (OOD)

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "metacognitive-behavioral-tuning/Qwen3-1.7B-MBT-S"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, dtype="bfloat16", device_map="auto")
Downloads last month
9
Safetensors
Model size
2B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for metacognitive-behavioral-tuning/Qwen3-1.7B-MBT-S

Finetuned
Qwen/Qwen3-1.7B
Finetuned
(1120)
this model