Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: luke-c/gpt2-lora
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- llama-cpp
|
| 6 |
+
- gguf-my-lora
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# luke-c/gpt2-lora-Q8_0-GGUF
|
| 10 |
+
This LoRA adapter was converted to GGUF format from [`luke-c/gpt2-lora`](https://huggingface.co/luke-c/gpt2-lora) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
|
| 11 |
+
Refer to the [original adapter repository](https://huggingface.co/luke-c/gpt2-lora) for more details.
|
| 12 |
+
|
| 13 |
+
## Use with llama.cpp
|
| 14 |
+
|
| 15 |
+
```bash
|
| 16 |
+
# with cli
|
| 17 |
+
llama-cli -m base_model.gguf --lora gpt2-lora-q8_0.gguf (...other args)
|
| 18 |
+
|
| 19 |
+
# with server
|
| 20 |
+
llama-server -m base_model.gguf --lora gpt2-lora-q8_0.gguf (...other args)
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
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).
|