theprint commited on
Commit
d7d340d
·
verified ·
1 Parent(s): 59222ef

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
+ TiTan-Llama-3.2-1B-f16.gguf filter=lfs diff=lfs merge=lfs -text
37
+ TiTan-Llama-3.2-1B-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
38
+ TiTan-Llama-3.2-1B-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
39
+ TiTan-Llama-3.2-1B-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
40
+ TiTan-Llama-3.2-1B-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
41
+ TiTan-Llama-3.2-1B-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/Llama-3.2-1B
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
+ - titan-llama-3.2-1b
12
+ model_type: llama
13
+ quantized_by: theprint
14
+ ---
15
+ # TiTan-Llama-3.2-1B - GGUF Quantized
16
+
17
+ Quantized GGUF versions of [TiTan-Llama-3.2-1B](https://huggingface.co/theprint/TiTan-Llama-3.2-1B) for use with llama.cpp and other GGUF-compatible inference engines.
18
+
19
+ ## Original Model
20
+
21
+ - **Base model:** [unsloth/Llama-3.2-1B](https://huggingface.co/unsloth/Llama-3.2-1B)
22
+ - **Fine-tuned model:** [theprint/TiTan-Llama-3.2-1B](https://huggingface.co/theprint/TiTan-Llama-3.2-1B)
23
+ - **Quantized by:** theprint
24
+
25
+ ## Available Quantizations
26
+
27
+ - `TiTan-Llama-3.2-1B-f16.gguf` (2364.7 MB) - 16-bit float (original precision, largest file)
28
+ - `TiTan-Llama-3.2-1B-q3_k_m.gguf` (658.8 MB) - 3-bit quantization (medium quality)
29
+ - `TiTan-Llama-3.2-1B-q4_k_m.gguf` (770.3 MB) - 4-bit quantization (medium, recommended for most use cases)
30
+ - `TiTan-Llama-3.2-1B-q5_k_m.gguf` (869.3 MB) - 5-bit quantization (medium, good quality)
31
+ - `TiTan-Llama-3.2-1B-q6_k.gguf` (974.5 MB) - 6-bit quantization (high quality)
32
+ - `TiTan-Llama-3.2-1B-q8_0.gguf` (1259.9 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/TiTan-Llama-3.2-1B-GGUF/resolve/main/TiTan-Llama-3.2-1B-q4_k_m.gguf
41
+
42
+ # Run inference
43
+ ./llama.cpp/main -m TiTan-Llama-3.2-1B-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{titan_llama_3.2_1b_gguf,
73
+ title={TiTan-Llama-3.2-1B GGUF Quantized Models},
74
+ author={theprint},
75
+ year={2025},
76
+ publisher={Hugging Face},
77
+ url={https://huggingface.co/theprint/TiTan-Llama-3.2-1B-GGUF}
78
+ }
79
+ ```
TiTan-Llama-3.2-1B-f16.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccc06b09febc2b76f05585cd1a6d16b42352fbeb565164f70ee44a158a8c7bc0
3
+ size 2479591328
TiTan-Llama-3.2-1B-q3_k_m.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:083ad436a799a96b2a223ee541ead7342ed522e3d7abd449165cbedb18e1770b
3
+ size 690839456
TiTan-Llama-3.2-1B-q4_k_m.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a8477108403f96441c739c15a543ee22edaa525eb7f315ac2ee2e0cadf6df8a
3
+ size 807690144
TiTan-Llama-3.2-1B-q5_k_m.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fdb3c3869eeab6b2052cb7d9b93775900a30aca23184e3acd74a878076141ec
3
+ size 911499168
TiTan-Llama-3.2-1B-q6_k.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc7d31ffce6e2583c6354f13726bcc0589b131f6b20e6221f6572a747186817d
3
+ size 1021796256
TiTan-Llama-3.2-1B-q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28b845822ba44ad8a084aa12f0e6d9b91b67aabbe342354ca63f0d12e6776959
3
+ size 1321078688