jarico193 commited on
Commit
6f11a97
·
verified ·
1 Parent(s): ac089c2

Upload README.md with huggingface_hub

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