From 05b94afa32128960c34194920f8173b7503725fe Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Tue, 28 Apr 2026 04:38:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=EF=BC=8C=E7=94=B1ModelHub=20XC=E7=A4=BE=E5=8C=BA=E6=8F=90?= =?UTF-8?q?=E4=BE=9B=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Model: mradermacher/python-llama-1b-GGUF Source: Original Platform --- .gitattributes | 47 +++++++++++++++++++++++ README.md | 75 +++++++++++++++++++++++++++++++++++++ python-llama-1b.IQ4_XS.gguf | 3 ++ python-llama-1b.Q2_K.gguf | 3 ++ python-llama-1b.Q3_K_L.gguf | 3 ++ python-llama-1b.Q3_K_M.gguf | 3 ++ python-llama-1b.Q3_K_S.gguf | 3 ++ python-llama-1b.Q4_K_M.gguf | 3 ++ python-llama-1b.Q4_K_S.gguf | 3 ++ python-llama-1b.Q5_K_M.gguf | 3 ++ python-llama-1b.Q5_K_S.gguf | 3 ++ python-llama-1b.Q6_K.gguf | 3 ++ python-llama-1b.Q8_0.gguf | 3 ++ python-llama-1b.f16.gguf | 3 ++ 14 files changed, 158 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md create mode 100644 python-llama-1b.IQ4_XS.gguf create mode 100644 python-llama-1b.Q2_K.gguf create mode 100644 python-llama-1b.Q3_K_L.gguf create mode 100644 python-llama-1b.Q3_K_M.gguf create mode 100644 python-llama-1b.Q3_K_S.gguf create mode 100644 python-llama-1b.Q4_K_M.gguf create mode 100644 python-llama-1b.Q4_K_S.gguf create mode 100644 python-llama-1b.Q5_K_M.gguf create mode 100644 python-llama-1b.Q5_K_S.gguf create mode 100644 python-llama-1b.Q6_K.gguf create mode 100644 python-llama-1b.Q8_0.gguf create mode 100644 python-llama-1b.f16.gguf diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..be3556c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,47 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +python-llama-1b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text +python-llama-1b.f16.gguf filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..2b85c45 --- /dev/null +++ b/README.md @@ -0,0 +1,75 @@ +--- +base_model: Neopix/python-llama-1b +language: +- en +library_name: transformers +license: apache-2.0 +mradermacher: + readme_rev: 1 +quantized_by: mradermacher +tags: +- text-generation-inference +- transformers +- unsloth +- llama +- trl +--- +## About + + + + + + +static quants of https://huggingface.co/Neopix/python-llama-1b + + + +***For a convenient overview and download list, visit our [model page for this model](https://hf.tst.eu/model#python-llama-1b-GGUF).*** + +weighted/imatrix quants seem not to be available (by me) at this time. If they do not show up a week or so after the static ones, I have probably not planned for them. Feel free to request them by opening a Community Discussion. +## Usage + +If you are unsure how to use GGUF files, refer to one of [TheBloke's +READMEs](https://huggingface.co/TheBloke/KafkaLM-70B-German-V0.1-GGUF) for +more details, including on how to concatenate multi-part files. + +## Provided Quants + +(sorted by size, not necessarily quality. IQ-quants are often preferable over similar sized non-IQ quants) + +| Link | Type | Size/GB | Notes | +|:-----|:-----|--------:|:------| +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q2_K.gguf) | Q2_K | 0.7 | | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q3_K_S.gguf) | Q3_K_S | 0.7 | | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q3_K_M.gguf) | Q3_K_M | 0.8 | lower quality | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q3_K_L.gguf) | Q3_K_L | 0.8 | | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.IQ4_XS.gguf) | IQ4_XS | 0.8 | | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q4_K_S.gguf) | Q4_K_S | 0.9 | fast, recommended | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q4_K_M.gguf) | Q4_K_M | 0.9 | fast, recommended | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q5_K_S.gguf) | Q5_K_S | 1.0 | | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q5_K_M.gguf) | Q5_K_M | 1.0 | | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q6_K.gguf) | Q6_K | 1.1 | very good quality | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.Q8_0.gguf) | Q8_0 | 1.4 | fast, best quality | +| [GGUF](https://huggingface.co/mradermacher/python-llama-1b-GGUF/resolve/main/python-llama-1b.f16.gguf) | f16 | 2.6 | 16 bpw, overkill | + +Here is a handy graph by ikawrakow comparing some lower-quality quant +types (lower is better): + +![image.png](https://www.nethype.de/huggingface_embed/quantpplgraph.png) + +And here are Artefact2's thoughts on the matter: +https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9 + +## FAQ / Model Request + +See https://huggingface.co/mradermacher/model_requests for some answers to +questions you might have and/or if you want some other model quantized. + +## Thanks + +I thank my company, [nethype GmbH](https://www.nethype.de/), for letting +me use its servers and providing upgrades to my workstation to enable +this work in my free time. + + diff --git a/python-llama-1b.IQ4_XS.gguf b/python-llama-1b.IQ4_XS.gguf new file mode 100644 index 0000000..493256b --- /dev/null +++ b/python-llama-1b.IQ4_XS.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe1b18faa181b1ac0009cf198994d2691628dfc969d80dd7c9d19888b02f83f +size 748381536 diff --git a/python-llama-1b.Q2_K.gguf b/python-llama-1b.Q2_K.gguf new file mode 100644 index 0000000..40607b8 --- /dev/null +++ b/python-llama-1b.Q2_K.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac49ccf52d5e80ba3c137bf19cc04572928e1e8f2d0bd93355fbbef8ee226221 +size 580871520 diff --git a/python-llama-1b.Q3_K_L.gguf b/python-llama-1b.Q3_K_L.gguf new file mode 100644 index 0000000..7ce55fa --- /dev/null +++ b/python-llama-1b.Q3_K_L.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ba3cf947401fae3e288d380f9c3913cabe1d78ef36139347b0ba61ea3b64b4 +size 732521824 diff --git a/python-llama-1b.Q3_K_M.gguf b/python-llama-1b.Q3_K_M.gguf new file mode 100644 index 0000000..6198fd7 --- /dev/null +++ b/python-llama-1b.Q3_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217d499fdd28737c71aa0221e3731005783fbcb261f05a44aba9b1ab97f017eb +size 690840928 diff --git a/python-llama-1b.Q3_K_S.gguf b/python-llama-1b.Q3_K_S.gguf new file mode 100644 index 0000000..31de429 --- /dev/null +++ b/python-llama-1b.Q3_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c1f1f861531871b7009c2be0013a46dfedfc1c5aff245a63cdaa84695f5d3e +size 641688928 diff --git a/python-llama-1b.Q4_K_M.gguf b/python-llama-1b.Q4_K_M.gguf new file mode 100644 index 0000000..fa33828 --- /dev/null +++ b/python-llama-1b.Q4_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde371337182e8e4f7d4e35517ff35c53840d0a1cde6e364f5d0e876926da20e +size 807691616 diff --git a/python-llama-1b.Q4_K_S.gguf b/python-llama-1b.Q4_K_S.gguf new file mode 100644 index 0000000..4e6d45b --- /dev/null +++ b/python-llama-1b.Q4_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233bd0258ff940b35fa0978368708500ec7255584780ab079f7ca2236f1850e0 +size 775644512 diff --git a/python-llama-1b.Q5_K_M.gguf b/python-llama-1b.Q5_K_M.gguf new file mode 100644 index 0000000..88357d9 --- /dev/null +++ b/python-llama-1b.Q5_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134dac2b6abd3589530c506748e37b790315abbc39c64c2519507607fa09e8af +size 911500640 diff --git a/python-llama-1b.Q5_K_S.gguf b/python-llama-1b.Q5_K_S.gguf new file mode 100644 index 0000000..10afadb --- /dev/null +++ b/python-llama-1b.Q5_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0193a3a97d0da224481663e54e6e224a2a2bb3f648b78c8281a98d1bcfbd3d2 +size 892560736 diff --git a/python-llama-1b.Q6_K.gguf b/python-llama-1b.Q6_K.gguf new file mode 100644 index 0000000..da7a287 --- /dev/null +++ b/python-llama-1b.Q6_K.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27e5345a1897c68dad56e649f931ed7334eb8b377d9b7c6049d25e054916f85 +size 1021797728 diff --git a/python-llama-1b.Q8_0.gguf b/python-llama-1b.Q8_0.gguf new file mode 100644 index 0000000..98020da --- /dev/null +++ b/python-llama-1b.Q8_0.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5a6f4ee03ec71e17d52bd5086f34eda8787469439293129eac806180d5a09f +size 1321080160 diff --git a/python-llama-1b.f16.gguf b/python-llama-1b.f16.gguf new file mode 100644 index 0000000..563d936 --- /dev/null +++ b/python-llama-1b.f16.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200fa8f8ab07030a1903ee88ff9d7a3cdbc1969fc055b6328f56c9698860a5f1 +size 2479592800