nlpguy commited on
Commit
f5e40c2
1 Parent(s): cbb9f9f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ tags:
5
+ - mergekit
6
+ - merge
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ base_model:
10
+ - berkeley-nest/Starling-LM-7B-alpha
11
+ - FuseAI/OpenChat-3.5-7B-Solar
12
+ - openchat/openchat_3.5
13
+ - FuseAI/OpenChat-3.5-7B-Mixtral
14
+ ---
15
+
16
+ # nlpguy/StarFusion-alpha1-Q4_K_M-GGUF
17
+ This model was converted to GGUF format from [`nlpguy/StarFusion-alpha1`](https://huggingface.co/nlpguy/StarFusion-alpha1) 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/nlpguy/StarFusion-alpha1) for more details on the model.
19
+ ## Use with llama.cpp
20
+
21
+ Install llama.cpp through brew.
22
+
23
+ ```bash
24
+ brew install ggerganov/ggerganov/llama.cpp
25
+ ```
26
+ Invoke the llama.cpp server or the CLI.
27
+
28
+ CLI:
29
+
30
+ ```bash
31
+ llama-cli --hf-repo nlpguy/StarFusion-alpha1-Q4_K_M-GGUF --model starfusion-alpha1.Q4_K_M.gguf -p "The meaning to life and the universe is"
32
+ ```
33
+
34
+ Server:
35
+
36
+ ```bash
37
+ llama-server --hf-repo nlpguy/StarFusion-alpha1-Q4_K_M-GGUF --model starfusion-alpha1.Q4_K_M.gguf -c 2048
38
+ ```
39
+
40
+ 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.
41
+
42
+ ```
43
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m starfusion-alpha1.Q4_K_M.gguf -n 128
44
+ ```