ZirTech commited on
Commit
adc935f
·
verified ·
1 Parent(s): c6482c2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -2
README.md CHANGED
@@ -9,9 +9,12 @@ pipeline_tag: text-generation
9
 
10
  # OmniMath-2B - GGUF Quantized
11
 
12
- This repository contains **GGUF format quantizations** of the [OmniMath-2B](https://huggingface.co/ZirTech/OmniMath-2B) model, a 2-billion parameter language model specialized for mathematical reasoning.
 
13
 
14
- Original model: [ZirTech/OmniMath-2B](https://huggingface.co/ZirTech/OmniMath-2B)
 
 
15
 
16
  ## Quantizations & File Sizes
17
 
@@ -30,3 +33,34 @@ Original model: [ZirTech/OmniMath-2B](https://huggingface.co/ZirTech/OmniMath-2B
30
  | **Q8_0** | 2.01 GB | 8-bit, near‑original quality |
31
  | **F16** | 3.78 GB | 16-bit float (original weights) |
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  # OmniMath-2B - GGUF Quantized
11
 
12
+ **This is the official GGUF repository for the OmniMath-2B model.**
13
+ All quantizations provided here are created and maintained by the original model author.
14
 
15
+ **Original model**: [ZirTech/OmniMath-2B](https://huggingface.co/ZirTech/OmniMath-2B)
16
+
17
+ ---
18
 
19
  ## Quantizations & File Sizes
20
 
 
33
  | **Q8_0** | 2.01 GB | 8-bit, near‑original quality |
34
  | **F16** | 3.78 GB | 16-bit float (original weights) |
35
 
36
+ ---
37
+
38
+ # Recommended Quantization
39
+
40
+ Since **OmniMath-2B** is specialized for mathematical reasoning, **accuracy is paramount**. Lower bit quantizations (Q2, Q3, Q4) may degrade performance on complex problems.
41
+
42
+ | Recommendation | Quantization | Size | Notes |
43
+ |----------------|--------------|--------|-------|
44
+ | **Best for math** (minimal quality loss) | **Q8_0** or **F16** | 2.01 GB / 3.78 GB | Use if you have enough RAM/VRAM. |
45
+ | **Good trade‑off** (recommended) | **Q6_K** or **Q5_K_M** | 1.56 GB / 1.41 GB | Still high accuracy, much smaller than F16. |
46
+ | **Minimum acceptable** (for tight memory) | **Q4_K_M** | 1.27 GB | May lose some precision; test before using in production. |
47
+ | **Not recommended** | Q2_K, Q3_K_*, IQ4_XS | < 1.2 GB | Likely to degrade mathematical reasoning. |
48
+
49
+ > **Tip**: For the best results, use **Q8_0** or **Q6_K**. If you need to save space, **Q5_K_M** is the lowest we recommend for math.
50
+
51
+ ---
52
+
53
+ # License
54
+
55
+ This repository and the quantized files are released under the ztech-license.
56
+ Please refer to the original model repository for the full license text.
57
+
58
+ The GGUF format quantizations are provided by the original author. No third-party ownership is claimed.
59
+
60
+ ---
61
+
62
+ <div align="center">
63
+
64
+ **Built by [Zirt Tech](https://huggingface.co/ZirTech) ❤️**
65
+
66
+ </div>