Awan LLM
commited on
Commit
•
0d802cb
1
Parent(s):
7e3a151
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,33 @@
|
|
1 |
-
---
|
2 |
-
license: llama3
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: llama3
|
3 |
+
---
|
4 |
+
Based on Meta-Llama-3-8b-Instruct, and is governed by Meta Llama 3 License agreement:
|
5 |
+
https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
|
6 |
+
|
7 |
+
|
8 |
+
DPO fine tuning method using the following datasets:
|
9 |
+
- https://huggingface.co/datasets/Intel/orca_dpo_pairs
|
10 |
+
- https://huggingface.co/datasets/argilla/distilabel-math-preference-dpo
|
11 |
+
- https://huggingface.co/datasets/unalignment/toxic-dpo-v0.2
|
12 |
+
- https://huggingface.co/datasets/M4-ai/prm_dpo_pairs_cleaned
|
13 |
+
- https://huggingface.co/datasets/jondurbin/truthy-dpo-v0.1
|
14 |
+
|
15 |
+
|
16 |
+
We are happy for anyone to try it out and give some feedback and we will have the model up on https://awanllm.com on our LLM API if it is popular.
|
17 |
+
|
18 |
+
|
19 |
+
Instruct format:
|
20 |
+
```
|
21 |
+
<|begin_of_text|><|start_header_id|>system<|end_header_id|>
|
22 |
+
|
23 |
+
{{ system_prompt }}<|eot_id|><|start_header_id|>user<|end_header_id|>
|
24 |
+
|
25 |
+
{{ user_message_1 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
26 |
+
|
27 |
+
{{ model_answer_1 }}<|eot_id|><|start_header_id|>user<|end_header_id|>
|
28 |
+
|
29 |
+
{{ user_message_2 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
30 |
+
```
|
31 |
+
|
32 |
+
|
33 |
+
Quants:
|