theprint commited on
Commit
605b24e
·
verified ·
1 Parent(s): 829d53a

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,9 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ ReasonableMath-Llama-3.2-3B-Instruct-f16.gguf filter=lfs diff=lfs merge=lfs -text
37
+ ReasonableMath-Llama-3.2-3B-Instruct-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
38
+ ReasonableMath-Llama-3.2-3B-Instruct-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
39
+ ReasonableMath-Llama-3.2-3B-Instruct-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
40
+ ReasonableMath-Llama-3.2-3B-Instruct-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
41
+ ReasonableMath-Llama-3.2-3B-Instruct-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Llama-3.2-3B-Instruct
3
+ library_name: gguf
4
+ pipeline_tag: text-generation
5
+ language: en
6
+ license: apache-2.0
7
+ tags:
8
+ - gguf
9
+ - quantized
10
+ - llama.cpp
11
+ - reasonablemath-llama-3.2-3b-instruct
12
+ model_type: llama
13
+ quantized_by: theprint
14
+ ---
15
+ # ReasonableMath-Llama-3.2-3B-Instruct - GGUF Quantized
16
+
17
+ Quantized GGUF versions of [ReasonableMath-Llama-3.2-3B-Instruct](https://huggingface.co/theprint/ReasonableMath-Llama-3.2-3B-Instruct) for use with llama.cpp and other GGUF-compatible inference engines.
18
+
19
+ ## Original Model
20
+
21
+ - **Base model:** [meta-llama/Llama-3.2-3B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct)
22
+ - **Fine-tuned model:** [theprint/ReasonableMath-Llama-3.2-3B-Instruct](https://huggingface.co/theprint/ReasonableMath-Llama-3.2-3B-Instruct)
23
+ - **Quantized by:** theprint
24
+
25
+ ## Available Quantizations
26
+
27
+ - `ReasonableMath-Llama-3.2-3B-Instruct-f16.gguf` (6135.6 MB) - 16-bit float (original precision, largest file)
28
+ - `ReasonableMath-Llama-3.2-3B-Instruct-q3_k_m.gguf` (1609.0 MB) - 3-bit quantization (medium quality)
29
+ - `ReasonableMath-Llama-3.2-3B-Instruct-q4_k_m.gguf` (1925.8 MB) - 4-bit quantization (medium, recommended for most use cases)
30
+ - `ReasonableMath-Llama-3.2-3B-Instruct-q5_k_m.gguf` (2214.6 MB) - 5-bit quantization (medium, good quality)
31
+ - `ReasonableMath-Llama-3.2-3B-Instruct-q6_k.gguf` (2521.4 MB) - 6-bit quantization (high quality)
32
+ - `ReasonableMath-Llama-3.2-3B-Instruct-q8_0.gguf` (3263.4 MB) - 8-bit quantization (very high quality)
33
+
34
+ ## Usage
35
+
36
+ ### With llama.cpp
37
+
38
+ ```bash
39
+ # Download recommended quantization
40
+ wget https://huggingface.co/theprint/ReasonableMath-Llama-3.2-3B-Instruct-GGUF/resolve/main/ReasonableMath-Llama-3.2-3B-Instruct-q4_k_m.gguf
41
+
42
+ # Run inference
43
+ ./llama.cpp/main -m ReasonableMath-Llama-3.2-3B-Instruct-q4_k_m.gguf \
44
+ -p "Your prompt here" \
45
+ -n 256 \
46
+ --temp 0.7 \
47
+ --top-p 0.9
48
+ ```
49
+
50
+ ### With other GGUF tools
51
+
52
+ These files are compatible with:
53
+ - [llama.cpp](https://github.com/ggerganov/llama.cpp)
54
+ - [Ollama](https://ollama.ai/) (import as custom model)
55
+ - [KoboldCpp](https://github.com/LostRuins/koboldcpp)
56
+ - [text-generation-webui](https://github.com/oobabooga/text-generation-webui)
57
+
58
+ ## Quantization Info
59
+
60
+ **Recommended:** `q4_k_m` provides the best balance of size, speed, and quality for most use cases.
61
+
62
+ **For maximum quality:** Use `q8_0` or `f16`
63
+ **For maximum speed/smallest size:** Use `q3_k_m` or `q4_k_s`
64
+
65
+ ## License
66
+
67
+ apache-2.0
68
+
69
+ ## Citation
70
+
71
+ ```bibtex
72
+ @misc{reasonablemath_llama_3.2_3b_instruct_gguf,
73
+ title={ReasonableMath-Llama-3.2-3B-Instruct GGUF Quantized Models},
74
+ author={theprint},
75
+ year={2025},
76
+ publisher={Hugging Face},
77
+ url={https://huggingface.co/theprint/ReasonableMath-Llama-3.2-3B-Instruct-GGUF}
78
+ }
79
+ ```
ReasonableMath-Llama-3.2-3B-Instruct-f16.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3baa4bb49e1e48dfc04e5387239cdcfc6f14c05679e94827330a6b5d28cc097
3
+ size 6433687648
ReasonableMath-Llama-3.2-3B-Instruct-q3_k_m.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7ff488cac39c6757cc3a28bf2e9b173e97d905c2582fc38768fb32ff40f57e9
3
+ size 1687158880
ReasonableMath-Llama-3.2-3B-Instruct-q4_k_m.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a235fd800a130728c17ff7d7e9471e9bf5ae0c8fd7fa45e62053ee29194d6f65
3
+ size 2019377248
ReasonableMath-Llama-3.2-3B-Instruct-q5_k_m.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:851c92681106d767e05776f4d093eb367176f191db423b6c2771e5d69064b14c
3
+ size 2322153568
ReasonableMath-Llama-3.2-3B-Instruct-q6_k.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0569d54cac1bb06e3fbf5a32e7e19c936552d04d2d9aa050531c8d7b5d2e9eca
3
+ size 2643853408
ReasonableMath-Llama-3.2-3B-Instruct-q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7137023b94cb6a3395546907509edda0ce374ecc49d05248cbdc0f22023a31f
3
+ size 3421898848