YorkieOH10 commited on
Commit
e325f30
1 Parent(s): 986d116

Upload README.md with huggingface_hub

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