d8912046 commited on
Commit
71c51f6
·
verified ·
1 Parent(s): 2bdbcb3

Upload README.md with huggingface_hub

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