This model was trained as part of the
LLM Bilateral Bargaining project, which studies how LLM agents negotiate in structured buyer-seller bargaining games.
Training method: Group Relative Policy Optimization (GRPO) with a multi-component reward function covering parsing correctness, execution success, constraint compliance, and negotiation utility. Initialized from the
SFT checkpoint.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "yale-cadmy/qwen3-8B-bargaining-seller-rl",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9tokenizer = AutoTokenizer.from_pretrained("yale-cadmy/qwen3-8B-bargaining-seller-rl")