eltorio commited on
Commit
c8ea16d
·
verified ·
1 Parent(s): 103151b

Upload README.md with huggingface_hub

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