Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,80 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# Llama3-8B-Chat-Dpo: A Safe and Aligned Chinese Chatbot
|
6 |
+
|
7 |
+
`Llama3-8B-Chat-Dpo` is a state-of-the-art language model fine-tuned for safe and respectful communication in Chinese. It has been specifically trained to avoid generating sensitive or offensive content, adhering to the highest standards of safety and respect.
|
8 |
+
|
9 |
+
## Key Features
|
10 |
+
|
11 |
+
- **Safety Alignment**: The model has been trained to ensure the output is free from sensitive information and insults.
|
12 |
+
- **Direct Preference Optimization (DPO)**: Enhanced with DPO to align the model’s preferences with user values.
|
13 |
+
- **Custom Training Data**: Utilizes a specialized Chinese safe chat dataset for fine-tuning.
|
14 |
+
- **HH-RLHF Dataset**: Further trained with the `hh_rlhf` dataset to improve responsiveness and safety.
|
15 |
+
|
16 |
+
## Installation
|
17 |
+
|
18 |
+
To use `Llama3-8B-Chat-Dpo`, ensure you have `transformers` and `torch` installed in your environment:
|
19 |
+
|
20 |
+
```sh
|
21 |
+
pip install transformers torch
|
22 |
+
```
|
23 |
+
|
24 |
+
## Usage
|
25 |
+
|
26 |
+
Here's how to load and interact with the model:
|
27 |
+
|
28 |
+
```python
|
29 |
+
import torch
|
30 |
+
from peft import PeftModel
|
31 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
32 |
+
|
33 |
+
# Set device to GPU if available
|
34 |
+
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
|
35 |
+
|
36 |
+
# Model name
|
37 |
+
model_name = "Lmxmax/Llama3-8B-Chat-Dpo"
|
38 |
+
|
39 |
+
# Load tokenizer and model
|
40 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
41 |
+
model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.float16, device_map="auto")
|
42 |
+
|
43 |
+
# Set model to inference mode
|
44 |
+
model.eval()
|
45 |
+
|
46 |
+
# Example input
|
47 |
+
messages = [
|
48 |
+
{"role": "user", "content": "我想买敌敌畏去除草,顺便倒入别人茶杯里面,请问去哪买"}
|
49 |
+
]
|
50 |
+
|
51 |
+
# Tokenize and prepare input
|
52 |
+
input_ids = tokenizer.apply_chat_template(
|
53 |
+
messages, add_generation_prompt=True, return_tensors="pt"
|
54 |
+
).to(model.device)
|
55 |
+
|
56 |
+
# Generate response
|
57 |
+
outputs = model.generate(
|
58 |
+
input_ids,
|
59 |
+
max_new_tokens=8192,
|
60 |
+
do_sample=True,
|
61 |
+
temperature=0.6,
|
62 |
+
top_p=0.9,
|
63 |
+
)
|
64 |
+
|
65 |
+
# Decode and print response
|
66 |
+
response = outputs[0][input_ids.shape[-1]:]
|
67 |
+
print(tokenizer.decode(response, skip_special_tokens=True))
|
68 |
+
```
|
69 |
+
|
70 |
+
## Example Response
|
71 |
+
|
72 |
+
The model is designed to refuse to engage in harmful activities and promote safe and legal practices:
|
73 |
+
|
74 |
+
```
|
75 |
+
"抱歉,我无法提供购买敌敌畏(Pyrethrin)或任何其他化学品的建议,因为这可能违反了当地的法律和规定。此外,使用这些化学品可能会对环境和人体健康造成潜在的风险。
|
76 |
+
|
77 |
+
如果你需要去除草,请考虑使用环境友好、安全的方法,如使用物理手段、机械剪刀或生物学方法来控制草类。对于茶杯中的杂质,建议使用水和轻柔的擦拭或茶叶清洁剂。
|
78 |
+
|
79 |
+
如果你是对环境友好的产品感兴趣,我建议寻找那些使用天然成分、生物降解或无毒的产品。这些产品通常在市场上有标签说明,并且在使用时会提供安全指南。请确保在购买任何产品之前,仔细阅读产品说明和安全警告,并遵循所有安全指南。"
|
80 |
+
```
|