wwe180 commited on
Commit
3c027f9
1 Parent(s): b3775d2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - 15B
4
+ - Llama3
5
+ - llama-cpp
6
+ - gguf-my-repo
7
+ base_model:
8
+ - wwe180/Llama3-15B-lingyang-v0.1
9
+ ---
10
+
11
+ # wwe180/Llama3-15B-ShenNu-v0.1-Q6_K-GGUF
12
+ This model was converted to GGUF format from [`wwe180/Llama3-15B-ShenNu-v0.1`](https://huggingface.co/wwe180/Llama3-15B-ShenNu-v0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
13
+ Refer to the [original model card](https://huggingface.co/wwe180/Llama3-15B-ShenNu-v0.1) for more details on the model.
14
+ ## Use with llama.cpp
15
+ Install llama.cpp through brew.
16
+ ```bash
17
+ brew install ggerganov/ggerganov/llama.cpp
18
+ ```
19
+ Invoke the llama.cpp server or the CLI.
20
+ CLI:
21
+ ```bash
22
+ llama-cli --hf-repo wwe180/Llama3-15B-ShenNu-v0.1-Q6_K-GGUF --model llama3-15b-shennu-v0.1-q6_k.gguf -p "The meaning to life and the universe is"
23
+ ```
24
+ Server:
25
+ ```bash
26
+ llama-server --hf-repo wwe180/Llama3-15B-ShenNu-v0.1-Q6_K-GGUF --model llama3-15b-shennu-v0.1-q6_k.gguf -c 2048
27
+ ```
28
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
29
+ ```
30
+ git clone https://github.com/ggerganov/llama.cpp && \
31
+ cd llama.cpp && \
32
+ make && \
33
+ ./main -m llama3-15b-shennu-v0.1-q6_k.gguf -n 128
34
+ ```