Upload folder using huggingface_hub
Browse files- .gitattributes +6 -0
- README.md +79 -0
- Zeth-Gemma3-4B-f16.gguf +3 -0
- Zeth-Gemma3-4B-q3_k_m.gguf +3 -0
- Zeth-Gemma3-4B-q4_k_m.gguf +3 -0
- Zeth-Gemma3-4B-q5_k_m.gguf +3 -0
- Zeth-Gemma3-4B-q6_k.gguf +3 -0
- Zeth-Gemma3-4B-q8_0.gguf +3 -0
.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 |
+
Zeth-Gemma3-4B-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
37 |
+
Zeth-Gemma3-4B-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
38 |
+
Zeth-Gemma3-4B-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
39 |
+
Zeth-Gemma3-4B-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
40 |
+
Zeth-Gemma3-4B-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
41 |
+
Zeth-Gemma3-4B-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: google/gemma-3-4b-it
|
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 |
+
- zeth-gemma3-4b
|
12 |
+
model_type: llama
|
13 |
+
quantized_by: theprint
|
14 |
+
---
|
15 |
+
# Zeth-Gemma3-4B - GGUF Quantized
|
16 |
+
|
17 |
+
Quantized GGUF versions of [Zeth-Gemma3-4B](https://huggingface.co/theprint/Zeth-Gemma3-4B) for use with llama.cpp and other GGUF-compatible inference engines.
|
18 |
+
|
19 |
+
## Original Model
|
20 |
+
|
21 |
+
- **Base model:** [google/gemma-3-4b-it](https://huggingface.co/google/gemma-3-4b-it)
|
22 |
+
- **Fine-tuned model:** [theprint/Zeth-Gemma3-4B](https://huggingface.co/theprint/Zeth-Gemma3-4B)
|
23 |
+
- **Quantized by:** theprint
|
24 |
+
|
25 |
+
## Available Quantizations
|
26 |
+
|
27 |
+
- `Zeth-Gemma3-4B-f16.gguf` (8688.3 MB) - 16-bit float (original precision, largest file)
|
28 |
+
- `Zeth-Gemma3-4B-q3_k_m.gguf` (2276.3 MB) - 3-bit quantization (medium quality)
|
29 |
+
- `Zeth-Gemma3-4B-q4_k_m.gguf` (2734.6 MB) - 4-bit quantization (medium, recommended for most use cases)
|
30 |
+
- `Zeth-Gemma3-4B-q5_k_m.gguf` (3138.7 MB) - 5-bit quantization (medium, good quality)
|
31 |
+
- `Zeth-Gemma3-4B-q6_k.gguf` (3568.1 MB) - 6-bit quantization (high quality)
|
32 |
+
- `Zeth-Gemma3-4B-q8_0.gguf` (4619.2 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/Zeth-Gemma3-4B-GGUF/resolve/main/Zeth-Gemma3-4B-q4_k_m.gguf
|
41 |
+
|
42 |
+
# Run inference
|
43 |
+
./llama.cpp/main -m Zeth-Gemma3-4B-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{zeth_gemma3_4b_gguf,
|
73 |
+
title={Zeth-Gemma3-4B GGUF Quantized Models},
|
74 |
+
author={theprint},
|
75 |
+
year={2025},
|
76 |
+
publisher={Hugging Face},
|
77 |
+
url={https://huggingface.co/theprint/Zeth-Gemma3-4B-GGUF}
|
78 |
+
}
|
79 |
+
```
|
Zeth-Gemma3-4B-f16.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:340a44984263218bd7011efc4c0322b8210fb9189301f41f4277b7248868d6bc
|
3 |
+
size 9110308480
|
Zeth-Gemma3-4B-q3_k_m.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4f0f3da94ee150765b81149fbf726b2ec416b93d968d01f19577ba51d87b9893
|
3 |
+
size 2386888320
|
Zeth-Gemma3-4B-q4_k_m.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:704771e5e6bbba64d627a451653d50f70cbe236e64b7a835ddd83f1f7f71d24c
|
3 |
+
size 2867473280
|
Zeth-Gemma3-4B-q5_k_m.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b20dea9c64bcd3c031c73246cbda857327ddb4ddeadf80e5520e01667d5c047b
|
3 |
+
size 3291184000
|
Zeth-Gemma3-4B-q6_k.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9389eb8fe0f2f73dfe450c2d2adaf99dc989ae40a391e7ece79941de30ccc496
|
3 |
+
size 3741376640
|
Zeth-Gemma3-4B-q8_0.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:09ca9d4e52c582a9bd8dbd66df58a0cd021a1320ddab29f870e75e7521955b48
|
3 |
+
size 4843607680
|