gghfez commited on
Commit
0e931d3
·
verified ·
1 Parent(s): 854b6b9

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
+ base_model: rAIfle/SorcererLM-8x22b-epoch2-LoRA
4
+ base_model_relation: adapter
5
+ tags:
6
+ - llama-cpp
7
+ - gguf-my-lora
8
+ ---
9
+
10
+ # gghfez/SorcererLM-8x22b-epoch2-LoRA-F16-GGUF
11
+ This LoRA adapter was converted to GGUF format from [`rAIfle/SorcererLM-8x22b-epoch2-LoRA`](https://huggingface.co/rAIfle/SorcererLM-8x22b-epoch2-LoRA) 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/rAIfle/SorcererLM-8x22b-epoch2-LoRA) for more details.
13
+
14
+ ## Use with llama.cpp
15
+
16
+ ```bash
17
+ # with cli
18
+ llama-cli -m base_model.gguf --lora SorcererLM-8x22b-epoch2-LoRA-f16.gguf (...other args)
19
+
20
+ # with server
21
+ llama-server -m base_model.gguf --lora SorcererLM-8x22b-epoch2-LoRA-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).