win10 commited on
Commit
2cec023
1 Parent(s): eab9e7d

Upload README.md with huggingface_hub

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