int2eh commited on
Commit
94d3064
1 Parent(s): bd737cf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ tags:
4
+ - llama-cpp
5
+ - gguf-my-repo
6
+ license_name: deepseek
7
+ license_link: LICENSE
8
+ ---
9
+
10
+ # int2eh/deepseek-coder-6.7b-instruct-Q6_K-GGUF
11
+ This model was converted to GGUF format from [`deepseek-ai/deepseek-coder-6.7b-instruct`](https://huggingface.co/deepseek-ai/deepseek-coder-6.7b-instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
12
+ Refer to the [original model card](https://huggingface.co/deepseek-ai/deepseek-coder-6.7b-instruct) for more details on the model.
13
+ ## Use with llama.cpp
14
+
15
+ Install llama.cpp through brew.
16
+
17
+ ```bash
18
+ brew install ggerganov/ggerganov/llama.cpp
19
+ ```
20
+ Invoke the llama.cpp server or the CLI.
21
+
22
+ CLI:
23
+
24
+ ```bash
25
+ llama-cli --hf-repo int2eh/deepseek-coder-6.7b-instruct-Q6_K-GGUF --model deepseek-coder-6.7b-instruct.Q6_K.gguf -p "The meaning to life and the universe is"
26
+ ```
27
+
28
+ Server:
29
+
30
+ ```bash
31
+ llama-server --hf-repo int2eh/deepseek-coder-6.7b-instruct-Q6_K-GGUF --model deepseek-coder-6.7b-instruct.Q6_K.gguf -c 2048
32
+ ```
33
+
34
+ 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.
35
+
36
+ ```
37
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m deepseek-coder-6.7b-instruct.Q6_K.gguf -n 128
38
+ ```