yqnis commited on
Commit
ee3bcf5
·
verified ·
1 Parent(s): c6981a2

Upload README.md with huggingface_hub

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