zashwanth commited on
Commit
3288e89
·
verified ·
1 Parent(s): a16c1e1

Upload README.md with huggingface_hub

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