newsletter commited on
Commit
4762e57
1 Parent(s): fdf4ef2

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