HummingbirdCake commited on
Commit
954f240
·
verified ·
1 Parent(s): a2c3d20

Upload README.md with huggingface_hub

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