Anoxiom commited on
Commit
34736d9
1 Parent(s): 1458c10

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - llama-cpp
4
+ - gguf-my-repo
5
+ datasets:
6
+ - Yukang/LongAlpaca-16k-length
7
+ ---
8
+
9
+ # Anoxiom/Llama-3-8B-16K-Q6_K-GGUF
10
+ This model was converted to GGUF format from [`mattshumer/Llama-3-8B-16K`](https://huggingface.co/mattshumer/Llama-3-8B-16K) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
11
+ Refer to the [original model card](https://huggingface.co/mattshumer/Llama-3-8B-16K) for more details on the model.
12
+ ## Use with llama.cpp
13
+
14
+ Install llama.cpp through brew.
15
+
16
+ ```bash
17
+ brew install ggerganov/ggerganov/llama.cpp
18
+ ```
19
+ Invoke the llama.cpp server or the CLI.
20
+
21
+ CLI:
22
+
23
+ ```bash
24
+ llama-cli --hf-repo Anoxiom/Llama-3-8B-16K-Q6_K-GGUF --model llama-3-8b-16k.Q6_K.gguf -p "The meaning to life and the universe is"
25
+ ```
26
+
27
+ Server:
28
+
29
+ ```bash
30
+ llama-server --hf-repo Anoxiom/Llama-3-8B-16K-Q6_K-GGUF --model llama-3-8b-16k.Q6_K.gguf -c 2048
31
+ ```
32
+
33
+ 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.
34
+
35
+ ```
36
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m llama-3-8b-16k.Q6_K.gguf -n 128
37
+ ```