Transformers
GGUF
English
mergekit
Merge
llama-cpp
gguf-my-repo
Inference Endpoints
bingbort commited on
Commit
c1640d6
1 Parent(s): 5be1ab7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc
5
+ library_name: transformers
6
+ tags:
7
+ - mergekit
8
+ - merge
9
+ - llama-cpp
10
+ - gguf-my-repo
11
+ base_model: []
12
+ datasets:
13
+ - c-s-ale/alpaca-gpt4-data
14
+ - Open-Orca/OpenOrca
15
+ - Intel/orca_dpo_pairs
16
+ - allenai/ultrafeedback_binarized_cleaned
17
+ ---
18
+
19
+ # bingbort/SOLAR-19.2B-Instruct-v1.0-Q4_K_M-GGUF
20
+ This model was converted to GGUF format from [`Joseph717171/SOLAR-19.2B-Instruct-v1.0`](https://huggingface.co/Joseph717171/SOLAR-19.2B-Instruct-v1.0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
21
+ Refer to the [original model card](https://huggingface.co/Joseph717171/SOLAR-19.2B-Instruct-v1.0) for more details on the model.
22
+ ## Use with llama.cpp
23
+
24
+ Install llama.cpp through brew.
25
+
26
+ ```bash
27
+ brew install ggerganov/ggerganov/llama.cpp
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+
31
+ CLI:
32
+
33
+ ```bash
34
+ llama-cli --hf-repo bingbort/SOLAR-19.2B-Instruct-v1.0-Q4_K_M-GGUF --model solar-19.2b-instruct-v1.0.Q4_K_M.gguf -p "The meaning to life and the universe is"
35
+ ```
36
+
37
+ Server:
38
+
39
+ ```bash
40
+ llama-server --hf-repo bingbort/SOLAR-19.2B-Instruct-v1.0-Q4_K_M-GGUF --model solar-19.2b-instruct-v1.0.Q4_K_M.gguf -c 2048
41
+ ```
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
+ ```
46
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m solar-19.2b-instruct-v1.0.Q4_K_M.gguf -n 128
47
+ ```