asynclee commited on
Commit
cdcbe5e
·
verified ·
1 Parent(s): 8db298d

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: lucaelin/SmolLM2-360M-Instruct-fc-cn-lora
3
+ tags:
4
+ - text-generation-inference
5
+ - transformers
6
+ - unsloth
7
+ - llama
8
+ - trl
9
+ - llama-cpp
10
+ - gguf-my-lora
11
+ license: apache-2.0
12
+ language:
13
+ - en
14
+ ---
15
+
16
+ # asynclee/SmolLM2-360M-Instruct-fc-cn-lora-Q8_0-GGUF
17
+ This LoRA adapter was converted to GGUF format from [`lucaelin/SmolLM2-360M-Instruct-fc-cn-lora`](https://huggingface.co/lucaelin/SmolLM2-360M-Instruct-fc-cn-lora) 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/lucaelin/SmolLM2-360M-Instruct-fc-cn-lora) for more details.
19
+
20
+ ## Use with llama.cpp
21
+
22
+ ```bash
23
+ # with cli
24
+ llama-cli -m base_model.gguf --lora SmolLM2-360M-Instruct-fc-cn-lora-q8_0.gguf (...other args)
25
+
26
+ # with server
27
+ llama-server -m base_model.gguf --lora SmolLM2-360M-Instruct-fc-cn-lora-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).