Views
No views yet
| Method | GRPO via VERL |
| Reward | Empathy quality + cross-turn tactic diversity |
| Base model | Qwen/Qwen3-4B |
| KL coeff | 0.01 |
| Diversity weight | 1.0 |
| Response length | 2048 tokens |
| Rollouts | n=8 per prompt |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("hongli-zhan/MINT-empathy-Qwen3-4B")
4tokenizer = AutoTokenizer.from_pretrained("hongli-zhan/MINT-empathy-Qwen3-4B")1from vllm import LLM
2llm = LLM(model="hongli-zhan/MINT-empathy-Qwen3-4B")1@article{zhan2026discourse,
2 title={Discourse Diversity in Multi-Turn Empathic Dialogue},
3 author={Zhan, Hongli and Gueorguieva, Emma S and Hernandez, Javier and Suh, Jina and Ong, Desmond C and Li, Junyi Jessy},
4 journal={arXiv preprint arXiv:2604.11742},
5 year={2026}
6}