Update model card with detailed information
Browse files
README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- negotiation
|
| 6 |
+
- business
|
| 7 |
+
- conversation
|
| 8 |
+
license: mit
|
| 9 |
+
---
|
| 10 |
+
# Don - The Negotiation Expert
|
| 11 |
+
|
| 12 |
+
This model is fine-tuned for business negotiations, trained to emulate confident and assertive negotiation techniques.
|
| 13 |
+
|
| 14 |
+
## Model Description
|
| 15 |
+
|
| 16 |
+
Don is a specialized language model trained for business negotiations. It can:
|
| 17 |
+
- Handle various negotiation scenarios
|
| 18 |
+
- Maintain a strong position while being diplomatic
|
| 19 |
+
- Work towards mutually beneficial agreements
|
| 20 |
+
- Adapt to different negotiation styles
|
| 21 |
+
|
| 22 |
+
## Usage
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 26 |
+
|
| 27 |
+
model = AutoModelForCausalLM.from_pretrained("omoplatapus/don")
|
| 28 |
+
tokenizer = AutoTokenizer.from_pretrained("omoplatapus/don")
|
| 29 |
+
|
| 30 |
+
# Format your input
|
| 31 |
+
text = "Let's negotiate the price of this property. I'm offering $800,000 for it."
|
| 32 |
+
|
| 33 |
+
# Generate response
|
| 34 |
+
inputs = tokenizer(text, return_tensors="pt")
|
| 35 |
+
outputs = model.generate(**inputs)
|
| 36 |
+
response = tokenizer.decode(outputs[0])
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## Training Details
|
| 40 |
+
|
| 41 |
+
The model was fine-tuned on a curated dataset of business negotiations with specific focus on:
|
| 42 |
+
- Price negotiations
|
| 43 |
+
- Contract discussions
|
| 44 |
+
- Partnership agreements
|
| 45 |
+
- Service level negotiations
|
| 46 |
+
|
| 47 |
+
## Limitations
|
| 48 |
+
|
| 49 |
+
- The model should not be used for legal advice
|
| 50 |
+
- All negotiations should be verified by human experts
|
| 51 |
+
- The model may occasionally generate overly assertive responses
|