Merge branch 'main' of https://huggingface.co/HenryJJ/llama3-8B-cqia
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- m-a-p/COIG-CQIA
|
5 |
+
---
|
6 |
+
|
7 |
+
# llama3-8B-lima
|
8 |
+
|
9 |
+
[<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl)
|
10 |
+
|
11 |
+
SFT with 64bits/lima_vicuna_format. 3 epoch qlora. Code under [https://huggingface.co/HenryJJ/llama3-8B-lima/blob/main/config/llama3-cqia.yml](https://huggingface.co/HenryJJ/llama3-8B-lima/blob/main/config/llama3-llama3-cqia.yml).
|
12 |
+
|
13 |
+
# Model Details
|
14 |
+
* **Trained by**: trained by HenryJJ.
|
15 |
+
* **Model type:** **llama3** is an auto-regressive language model based on the Llama 3 transformer architecture.
|
16 |
+
* **Language(s)**: English
|
17 |
+
* **License for llama3-8B-lima**: apache-2.0 license
|
18 |
+
|
19 |
+
|
20 |
+
# Prompting
|
21 |
+
|
22 |
+
Prompt format chatml:
|
23 |
+
This model uses ChatML prompt format.
|
24 |
+
```
|
25 |
+
<|im_start|>system
|
26 |
+
You are a helpful AI assistant.<|im_end|>
|
27 |
+
<|im_start|>user
|
28 |
+
{prompt}<|im_end|>
|
29 |
+
<|im_start|>assistant
|
30 |
+
|
31 |
+
```
|
32 |
+
|
33 |
+
Example:
|
34 |
+
```
|
35 |
+
<|im_start|>system
|
36 |
+
You are a helpful assistant.
|
37 |
+
<|im_start|>user
|
38 |
+
who is the president of us
|
39 |
+
<|im_start|>assistant
|
40 |
+
```
|