andreasmartin commited on
Commit
737a2e7
1 Parent(s): 513e50b

Upload README.md with huggingface_hub

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