SourPineapple commited on
Commit
80543a6
1 Parent(s): ac5d750

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: other
5
+ tags:
6
+ - causal-lm
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ datasets:
10
+ - HuggingFaceH4/ultrachat_200k
11
+ - allenai/ultrafeedback_binarized_cleaned
12
+ - meta-math/MetaMathQA
13
+ - WizardLM/WizardLM_evol_instruct_V2_196k
14
+ - openchat/openchat_sharegpt4_dataset
15
+ - LDJnr/Capybara
16
+ - Intel/orca_dpo_pairs
17
+ - hkust-nlp/deita-10k-v0
18
+ extra_gated_fields:
19
+ Name: text
20
+ Email: text
21
+ Country: text
22
+ Organization or Affiliation: text
23
+ I ALLOW Stability AI to email me about new model releases: checkbox
24
+ ---
25
+
26
+ # SourPineapple/stablelm-2-zephyr-1_6b-Q5_K_M-GGUF
27
+ This model was converted to GGUF format from [`stabilityai/stablelm-2-zephyr-1_6b`](https://huggingface.co/stabilityai/stablelm-2-zephyr-1_6b) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
28
+ Refer to the [original model card](https://huggingface.co/stabilityai/stablelm-2-zephyr-1_6b) for more details on the model.
29
+ ## Use with llama.cpp
30
+
31
+ Install llama.cpp through brew.
32
+
33
+ ```bash
34
+ brew install ggerganov/ggerganov/llama.cpp
35
+ ```
36
+ Invoke the llama.cpp server or the CLI.
37
+
38
+ CLI:
39
+
40
+ ```bash
41
+ llama-cli --hf-repo SourPineapple/stablelm-2-zephyr-1_6b-Q5_K_M-GGUF --model stablelm-2-zephyr-1_6b.Q5_K_M.gguf -p "The meaning to life and the universe is"
42
+ ```
43
+
44
+ Server:
45
+
46
+ ```bash
47
+ llama-server --hf-repo SourPineapple/stablelm-2-zephyr-1_6b-Q5_K_M-GGUF --model stablelm-2-zephyr-1_6b.Q5_K_M.gguf -c 2048
48
+ ```
49
+
50
+ 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.
51
+
52
+ ```
53
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m stablelm-2-zephyr-1_6b.Q5_K_M.gguf -n 128
54
+ ```