readme : ggerganov -> ggml-org
Browse files
README.md
CHANGED
@@ -9,7 +9,7 @@ tags:
|
|
9 |
base_model: Qwen/Qwen3-Coder-30B-A3B-Instruct
|
10 |
---
|
11 |
|
12 |
-
#
|
13 |
This model was converted to GGUF format from [`Qwen/Qwen3-Coder-30B-A3B-Instruct`](https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
14 |
Refer to the [original model card](https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct) for more details on the model.
|
15 |
|
@@ -24,19 +24,19 @@ Invoke the llama.cpp server or the CLI.
|
|
24 |
|
25 |
### CLI:
|
26 |
```bash
|
27 |
-
llama-cli --hf-repo
|
28 |
```
|
29 |
|
30 |
### Server:
|
31 |
```bash
|
32 |
-
llama-server --hf-repo
|
33 |
```
|
34 |
|
35 |
-
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/
|
36 |
|
37 |
Step 1: Clone llama.cpp from GitHub.
|
38 |
```
|
39 |
-
git clone https://github.com/
|
40 |
```
|
41 |
|
42 |
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
@@ -46,9 +46,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
46 |
|
47 |
Step 3: Run inference through the main binary.
|
48 |
```
|
49 |
-
./llama-cli --hf-repo
|
50 |
```
|
51 |
or
|
52 |
```
|
53 |
-
./llama-server --hf-repo
|
54 |
```
|
|
|
9 |
base_model: Qwen/Qwen3-Coder-30B-A3B-Instruct
|
10 |
---
|
11 |
|
12 |
+
# ggml-org/Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF
|
13 |
This model was converted to GGUF format from [`Qwen/Qwen3-Coder-30B-A3B-Instruct`](https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
14 |
Refer to the [original model card](https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct) for more details on the model.
|
15 |
|
|
|
24 |
|
25 |
### CLI:
|
26 |
```bash
|
27 |
+
llama-cli --hf-repo ggml-org/Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF --hf-file qwen3-coder-30b-a3b-instruct-q8_0.gguf -p "The meaning to life and the universe is"
|
28 |
```
|
29 |
|
30 |
### Server:
|
31 |
```bash
|
32 |
+
llama-server --hf-repo ggml-org/Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF --hf-file qwen3-coder-30b-a3b-instruct-q8_0.gguf -c 2048
|
33 |
```
|
34 |
|
35 |
+
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggml-org/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
36 |
|
37 |
Step 1: Clone llama.cpp from GitHub.
|
38 |
```
|
39 |
+
git clone https://github.com/ggml-org/llama.cpp
|
40 |
```
|
41 |
|
42 |
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
|
|
46 |
|
47 |
Step 3: Run inference through the main binary.
|
48 |
```
|
49 |
+
./llama-cli --hf-repo ggml-org/Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF --hf-file qwen3-coder-30b-a3b-instruct-q8_0.gguf -p "The meaning to life and the universe is"
|
50 |
```
|
51 |
or
|
52 |
```
|
53 |
+
./llama-server --hf-repo ggml-org/Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF --hf-file qwen3-coder-30b-a3b-instruct-q8_0.gguf -c 2048
|
54 |
```
|