CoolFace
Modelpublic

Jincenzi/SocialR1-4B

sourceHugging Facemitupdated 5mo agoView on Hugging Face
1likes34downloads
Model Card

SocialR1-4B

SocialR1-4B is a social reasoning model built on Qwen3-4B, trained with trajectory-level reinforcement learning (GRPO) using the Social-R1 framework. It enhances social reasoning capabilities by aligning reasoning processes with the Social Information Processing (SIP) theory.

๐Ÿ“„ Paper: Social-R1: Enhancing Social Reasoning in LLMs through Trajectory-Level Reinforcement Learning

Highlights

  • โ€”๐Ÿง  SIP-Guided Reasoning: Enforces stage-consistent social inference โ€” Cue Encoding โ†’ Cue Interpretation โ†’ Goal Clarification โ†’ Response Generation
  • โ€”๐ŸŽฏ Multi-Dimensional Reward: Combines structural reward, content reward, inference efficiency, and format reward with curriculum-style weighting
  • โ€”๐Ÿ“Š Strong Performance: Enables a 4B-parameter model to match or outperform substantially larger baselines across static MCQ benchmarks, open-ended generation (FanToM), and interactive settings (SOTOPIA)

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "Jincenzi/SocialR1-4B"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")

messages = [
    {"role": "user", "content": "You should first think about the reasoning process in the mind and then provide with the answer.The reasoning process and answer are enclosed within <think> </think> and <Answer> </Answer> tags, respectively."}
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=2048)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Training Details

  • โ€”Base Model: Qwen3-4B
  • โ€”Training Method: Group Relative Policy Optimization (GRPO)
  • โ€”Training Steps: 600
  • โ€”Hardware: 8ร— NVIDIA A100 (80GB)
  • โ€”Group Size: 5
  • โ€”KL Coefficient: 0.04
  • โ€”Learning Rate: 5ร—10โปโท
  • โ€”Reward Design: SIP structural reward ($R\text{struct}$) + SIP content reward ($R\text{cont}$) + inference efficiency ($R\text{len}$) + format reward ($R\text{fmt}$)

Evaluation

SocialR1-4B is evaluated across three complementary settings:

  • โ€”Static MCQ: ToMBench, ToMBench-Hard, SocialIQA, SimpleToM, EmoBench, MotiveBench, Hi-ToM, TactfulToM
  • โ€”Open-ended Generation: FanToM
  • โ€”Interactive Social Intelligence: SOTOPIA

Related Resources

ResourceLink
PaperarXiv:2603.09249
SocialR1-8BJincenzi/SocialR1-8B

Citation

BibTeX
@inproceedings{wu2026socialr1,
  title={Social-R1: Enhancing Social Reasoning in LLMs through Trajectory-Level Reinforcement Learning},
  author={Wu, Jincenzi and Lei, Yuxuan and Lian, Jianxun and Huang, Yitian and Zhou, Lexin and Li, Haotian and Yang, Deng and Xie, Xing and Meng, Helen},
  booktitle={Arxiv},
  year={2026}
}

Contact

For questions or discussions, please contact jincenziwu@gmail.com.