KatyTheCutie commited on
Commit
c19b990
1 Parent(s): 45ac218

Upload README.md with huggingface_hub

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