JackeyLai commited on
Commit
4000264
1 Parent(s): 48fa5be

Upload README.md with huggingface_hub

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