ngxson HF staff commited on
Commit
7209d3e
·
verified ·
1 Parent(s): 901d12b

Upload README.md with huggingface_hub

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