Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: peft
|
3 |
+
tags:
|
4 |
+
- nlp
|
5 |
+
- code
|
6 |
+
- instruct
|
7 |
+
- llama
|
8 |
+
- llama-cpp
|
9 |
+
- gguf-my-lora
|
10 |
+
datasets:
|
11 |
+
- Intel/orca_dpo_pairs
|
12 |
+
base_model: monsterapi/Llama-3_1-8B-Instruct-orca-ORPO
|
13 |
+
license: apache-2.0
|
14 |
+
---
|
15 |
+
|
16 |
+
# zheyushen/Llama-3_1-8B-Instruct-orca-ORPO-F32-GGUF
|
17 |
+
This LoRA adapter was converted to GGUF format from [`monsterapi/Llama-3_1-8B-Instruct-orca-ORPO`](https://huggingface.co/monsterapi/Llama-3_1-8B-Instruct-orca-ORPO) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
|
18 |
+
Refer to the [original adapter repository](https://huggingface.co/monsterapi/Llama-3_1-8B-Instruct-orca-ORPO) for more details.
|
19 |
+
|
20 |
+
## Use with llama.cpp
|
21 |
+
|
22 |
+
```bash
|
23 |
+
# with cli
|
24 |
+
llama-cli -m base_model.gguf --lora Llama-3_1-8B-Instruct-orca-ORPO-f32.gguf (...other args)
|
25 |
+
|
26 |
+
# with server
|
27 |
+
llama-server -m base_model.gguf --lora Llama-3_1-8B-Instruct-orca-ORPO-f32.gguf (...other args)
|
28 |
+
```
|
29 |
+
|
30 |
+
To know more about LoRA usage with llama.cpp server, refer to the [llama.cpp server documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/server/README.md).
|