zhuoranyang commited on
Commit
ba74edb
·
verified ·
1 Parent(s): 7dc55d5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ base_model: Qwen/Qwen3-8B
6
+ tags:
7
+ - bargaining
8
+ - negotiation
9
+ - reinforcement-learning
10
+ - grpo
11
+ - bilateral-bargaining
12
+ ---
13
+
14
+ # Qwen3-8B Bargaining Seller (RL)
15
+
16
+ A Qwen3-8B model trained via **reinforcement learning (GRPO)** to play as the **seller** in bilateral bargaining negotiations.
17
+
18
+ ## Overview
19
+
20
+ This model was trained as part of the [LLM Bilateral Bargaining](https://github.com/ZhuoranYang/llm_bilateral_bargaining) project, which studies how LLM agents negotiate in structured buyer-seller bargaining games.
21
+
22
+ **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](https://huggingface.co/yale-cadmy/qwen3-8B-bargaining-sft).
23
+
24
+ **Role**: Seller agent — negotiates to sell items at the highest price while respecting a private minimum acceptable price.
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from transformers import AutoModelForCausalLM, AutoTokenizer
30
+ import torch
31
+
32
+ model = AutoModelForCausalLM.from_pretrained(
33
+ "yale-cadmy/qwen3-8B-bargaining-seller-rl",
34
+ torch_dtype=torch.bfloat16,
35
+ device_map="auto",
36
+ )
37
+ tokenizer = AutoTokenizer.from_pretrained("yale-cadmy/qwen3-8B-bargaining-seller-rl")
38
+ ```
39
+
40
+ ## License
41
+
42
+ CC-BY-NC-4.0. See the [LLM Bilateral Bargaining](https://github.com/ZhuoranYang/llm_bilateral_bargaining) repository for details.