vinhnx90 commited on
Commit
724e3c8
·
verified ·
1 Parent(s): cb4b985

Upload README.md with huggingface_hub

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