bunnycore commited on
Commit
2991f6c
·
verified ·
1 Parent(s): cc12b42

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
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ - mistral
6
+ - 7b
7
+ - calme
8
+ - llama-cpp
9
+ - gguf-my-repo
10
+ inference: false
11
+ model_creator: MaziyarPanahi
12
+ pipeline_tag: text-generation
13
+ quantized_by: MaziyarPanahi
14
+ model-index:
15
+ - name: Calme-7B-Instruct-v0.9
16
+ results: []
17
+ ---
18
+
19
+ # bunnycore/Calme-7B-Instruct-v0.9-Q5_K_S-GGUF
20
+ This model was converted to GGUF format from [`MaziyarPanahi/Calme-7B-Instruct-v0.9`](https://huggingface.co/MaziyarPanahi/Calme-7B-Instruct-v0.9) 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/MaziyarPanahi/Calme-7B-Instruct-v0.9) 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 bunnycore/Calme-7B-Instruct-v0.9-Q5_K_S-GGUF --model calme-7b-instruct-v0.9.Q5_K_S.gguf -p "The meaning to life and the universe is"
35
+ ```
36
+
37
+ Server:
38
+
39
+ ```bash
40
+ llama-server --hf-repo bunnycore/Calme-7B-Instruct-v0.9-Q5_K_S-GGUF --model calme-7b-instruct-v0.9.Q5_K_S.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 calme-7b-instruct-v0.9.Q5_K_S.gguf -n 128
47
+ ```