Triangle104
commited on
Commit
•
a5e2dc7
1
Parent(s):
40b9ef0
Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
license:
|
3 |
language:
|
4 |
- en
|
5 |
metrics:
|
@@ -15,6 +15,23 @@ tags:
|
|
15 |
This model was converted to GGUF format from [`THU-KEG/Llama3-Crab-DPO`](https://huggingface.co/THU-KEG/Llama3-Crab-DPO) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
16 |
Refer to the [original model card](https://huggingface.co/THU-KEG/Llama3-Crab-DPO) for more details on the model.
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
## Use with llama.cpp
|
19 |
Install llama.cpp through brew (works on Mac and Linux)
|
20 |
|
@@ -53,4 +70,4 @@ Step 3: Run inference through the main binary.
|
|
53 |
or
|
54 |
```
|
55 |
./llama-server --hf-repo Triangle104/Llama3-Crab-DPO-Q4_K_M-GGUF --hf-file llama3-crab-dpo-q4_k_m.gguf -c 2048
|
56 |
-
```
|
|
|
1 |
---
|
2 |
+
license: llama3
|
3 |
language:
|
4 |
- en
|
5 |
metrics:
|
|
|
15 |
This model was converted to GGUF format from [`THU-KEG/Llama3-Crab-DPO`](https://huggingface.co/THU-KEG/Llama3-Crab-DPO) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
16 |
Refer to the [original model card](https://huggingface.co/THU-KEG/Llama3-Crab-DPO) for more details on the model.
|
17 |
|
18 |
+
---
|
19 |
+
Model details:
|
20 |
+
-
|
21 |
+
Large language models (LLMs) struggle to follow instructions with complex constraints in format, length, etc. Following the conventional instruction-tuning practice, previous works conduct post-training on complex instruction-response pairs generated by feeding complex instructions to advanced LLMs. However, even advanced LLMs cannot follow complex instructions well, thus limiting the quality of generated data. In this work, we find that existing datasets inherently contain implicit complex constraints and propose a novel data generation technique, constraint back-translation. Specifically, we take the high-quality instruction-response pairs in existing datasets and only adopt advanced LLMs to add complex constraints already met by the responses to the instructions, which naturally reduces costs and data noise. In the experiments, we adopt Llama3-70B-Instruct to back-translate constraints and create a high-quality complex instruction-response dataset, named CRAB. We present that post-training on CRAB improves multiple backbone LLMs' complex instruction-following ability, evaluated on extensive instruction-following benchmarks. We further find that constraint back-translation also serves as a useful auxiliary training objective in post-training.
|
22 |
+
|
23 |
+
📖 Paper: Constraint Back-translation Improves Complex Instruction Following of Large Language Models
|
24 |
+
|
25 |
+
🦀 Github: THU/Crab
|
26 |
+
|
27 |
+
Model Description
|
28 |
+
-
|
29 |
+
Developed by: Yunjia Qi, Hao Peng, Xiaozhi Wang, Bin Xu, Lei Hou, Juanzi Li
|
30 |
+
Model type: Text Generation
|
31 |
+
Language(s) (NLP): English
|
32 |
+
Finetuned from model [optional]: Llama3-8B
|
33 |
+
|
34 |
+
---
|
35 |
## Use with llama.cpp
|
36 |
Install llama.cpp through brew (works on Mac and Linux)
|
37 |
|
|
|
70 |
or
|
71 |
```
|
72 |
./llama-server --hf-repo Triangle104/Llama3-Crab-DPO-Q4_K_M-GGUF --hf-file llama3-crab-dpo-q4_k_m.gguf -c 2048
|
73 |
+
```
|