zeylei commited on
Commit
8a3a51e
·
verified ·
1 Parent(s): 99b7536

Upload README.md with huggingface_hub

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