kurros commited on
Commit
e90c5a4
1 Parent(s): 771ddf4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # kurros/stablelm-2-zephyr-1_6b-Q4_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
+ Install llama.cpp through brew.
31
+ ```bash
32
+ brew install ggerganov/ggerganov/llama.cpp
33
+ ```
34
+ Invoke the llama.cpp server or the CLI.
35
+ CLI:
36
+ ```bash
37
+ llama-cli --hf-repo kurros/stablelm-2-zephyr-1_6b-Q4_K_M-GGUF --model stablelm-2-zephyr-1_6b-q4_k_m.gguf -p "The meaning to life and the universe is"
38
+ ```
39
+ Server:
40
+ ```bash
41
+ llama-server --hf-repo kurros/stablelm-2-zephyr-1_6b-Q4_K_M-GGUF --model stablelm-2-zephyr-1_6b-q4_k_m.gguf -c 2048
42
+ ```
43
+ 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.
44
+ ```
45
+ git clone https://github.com/ggerganov/llama.cpp && \
46
+ cd llama.cpp && \
47
+ make && \
48
+ ./main -m stablelm-2-zephyr-1_6b-q4_k_m.gguf -n 128
49
+ ```