DavidAU commited on
Commit
4d65b23
1 Parent(s): 6c3a921

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
+ language:
3
+ - en
4
+ license: cc-by-nc-sa-4.0
5
+ tags:
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ ---
9
+
10
+ # DavidAU/Frankenstein-MoE-en-10.7Bx6-Q5_K_S-GGUF
11
+ This model was converted to GGUF format from [`MoEMoEKKung/Frankenstein-MoE-en-10.7Bx6`](https://huggingface.co/MoEMoEKKung/Frankenstein-MoE-en-10.7Bx6) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
12
+ Refer to the [original model card](https://huggingface.co/MoEMoEKKung/Frankenstein-MoE-en-10.7Bx6) for more details on the model.
13
+ ## Use with llama.cpp
14
+
15
+ Install llama.cpp through brew.
16
+
17
+ ```bash
18
+ brew install ggerganov/ggerganov/llama.cpp
19
+ ```
20
+ Invoke the llama.cpp server or the CLI.
21
+
22
+ CLI:
23
+
24
+ ```bash
25
+ llama-cli --hf-repo DavidAU/Frankenstein-MoE-en-10.7Bx6-Q5_K_S-GGUF --model frankenstein-moe-en-10.7bx6.Q5_K_S.gguf -p "The meaning to life and the universe is"
26
+ ```
27
+
28
+ Server:
29
+
30
+ ```bash
31
+ llama-server --hf-repo DavidAU/Frankenstein-MoE-en-10.7Bx6-Q5_K_S-GGUF --model frankenstein-moe-en-10.7bx6.Q5_K_S.gguf -c 2048
32
+ ```
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
+ ```
37
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m frankenstein-moe-en-10.7bx6.Q5_K_S.gguf -n 128
38
+ ```