ngxson HF staff commited on
Commit
e334a60
1 Parent(s): 8839484

Upload README.md with huggingface_hub

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