Brianpuz commited on
Commit
b95cc88
·
verified ·
1 Parent(s): f5c4970

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-1.7B-Base
3
+ library_name: transformers
4
+ license: apache-2.0
5
+ tags:
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ ---
9
+
10
+ *Produced by [Antigma Labs](https://antigma.ai), [Antigma Quantize Space](https://huggingface.co/spaces/Antigma/quantize-my-repo)*
11
+
12
+ *Follow Antigma Labs in X [https://x.com/antigma_labs](https://x.com/antigma_labs)*
13
+
14
+ *Antigma's GitHub Homepage [https://github.com/AntigmaLabs](https://github.com/AntigmaLabs)*
15
+
16
+ ## llama.cpp quantization
17
+ Using <a href="https://github.com/ggml-org/llama.cpp">llama.cpp</a> release <a href="https://github.com/ggml-org/llama.cpp/releases/tag/b5215">b4944</a> for quantization.
18
+ Original model: https://huggingface.co/Qwen/Qwen3-1.7B-Base
19
+ Run them directly with [llama.cpp](https://github.com/ggml-org/llama.cpp), or any other llama.cpp based project
20
+ ## Prompt format
21
+ ```
22
+ <|begin▁of▁sentence|>{system_prompt}<|User|>{prompt}<|Assistant|><|end▁of▁sentence|><|Assistant|>
23
+ ```
24
+ ## Download a file (not the whole branch) from below:
25
+ | Filename | Quant type | File Size | Split |
26
+ | -------- | ---------- | --------- | ----- |
27
+ | [qwen3-1.7b-base-q4_k_m.gguf](https://huggingface.co/Antigma/Qwen3-1.7B-Base-GGUF/blob/main/qwen3-1.7b-base-q4_k_m.gguf)|Q4_K_M|1.03 GB|False|
28
+ |[qwen3-1.7b-base-q4_0.gguf](https://huggingface.co/Antigma/Qwen3-1.7B-Base-GGUF/blob/main/qwen3-1.7b-base-q4_0.gguf)|Q4_0|0.98 GB|False|
29
+ |[qwen3-1.7b-base-q4_k_s.gguf](https://huggingface.co/Antigma/Qwen3-1.7B-Base-GGUF/blob/main/qwen3-1.7b-base-q4_k_s.gguf)|Q4_K_S|0.99 GB|False|
30
+
31
+ ## Downloading using huggingface-cli
32
+ <details>
33
+ <summary>Click to view download instructions</summary>
34
+ First, make sure you have hugginface-cli installed:
35
+
36
+ ```
37
+ pip install -U "huggingface_hub[cli]"
38
+ ```
39
+
40
+ Then, you can target the specific file you want:
41
+
42
+ ```
43
+ huggingface-cli download https://huggingface.co/Antigma/Qwen3-1.7B-Base-GGUF --include "qwen3-1.7b-base-q4_k_m.gguf" --local-dir ./
44
+ ```
45
+
46
+ If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:
47
+
48
+ ```
49
+ huggingface-cli download https://huggingface.co/Antigma/Qwen3-1.7B-Base-GGUF --include "qwen3-1.7b-base-q4_k_m.gguf/*" --local-dir ./
50
+ ```
51
+
52
+ You can either specify a new local-dir (deepseek-ai_DeepSeek-V3-0324-Q8_0) or download them all in place (./)
53
+
54
+ </details>