From 2fff5525d3f7f189e5c440fceec57dc376014f9b Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Tue, 16 Jun 2026 11:04:16 +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/aiqarus-agent-4b-GGUF Source: Original Platform --- .gitattributes | 47 +++++++++++++++++++++ README.md | 82 ++++++++++++++++++++++++++++++++++++ aiqarus-agent-4b.IQ4_XS.gguf | 3 ++ aiqarus-agent-4b.Q2_K.gguf | 3 ++ aiqarus-agent-4b.Q3_K_L.gguf | 3 ++ aiqarus-agent-4b.Q3_K_M.gguf | 3 ++ aiqarus-agent-4b.Q3_K_S.gguf | 3 ++ aiqarus-agent-4b.Q4_K_M.gguf | 3 ++ aiqarus-agent-4b.Q4_K_S.gguf | 3 ++ aiqarus-agent-4b.Q5_K_M.gguf | 3 ++ aiqarus-agent-4b.Q5_K_S.gguf | 3 ++ aiqarus-agent-4b.Q6_K.gguf | 3 ++ aiqarus-agent-4b.Q8_0.gguf | 3 ++ aiqarus-agent-4b.f16.gguf | 3 ++ 14 files changed, 165 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md create mode 100644 aiqarus-agent-4b.IQ4_XS.gguf create mode 100644 aiqarus-agent-4b.Q2_K.gguf create mode 100644 aiqarus-agent-4b.Q3_K_L.gguf create mode 100644 aiqarus-agent-4b.Q3_K_M.gguf create mode 100644 aiqarus-agent-4b.Q3_K_S.gguf create mode 100644 aiqarus-agent-4b.Q4_K_M.gguf create mode 100644 aiqarus-agent-4b.Q4_K_S.gguf create mode 100644 aiqarus-agent-4b.Q5_K_M.gguf create mode 100644 aiqarus-agent-4b.Q5_K_S.gguf create mode 100644 aiqarus-agent-4b.Q6_K.gguf create mode 100644 aiqarus-agent-4b.Q8_0.gguf create mode 100644 aiqarus-agent-4b.f16.gguf diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..96ba48e --- /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 +aiqarus-agent-4b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text +aiqarus-agent-4b.f16.gguf filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..a32a721 --- /dev/null +++ b/README.md @@ -0,0 +1,82 @@ +--- +base_model: zeon01/aiqarus-agent-4b +datasets: +- vericava/sft-tool-calling-structured-output-v1 +- interstellarninja/hermes_reasoning_tool_use +language: +- en +library_name: transformers +license: apache-2.0 +mradermacher: + readme_rev: 1 +quantized_by: mradermacher +tags: +- tool-calling +- agent +- enterprise +- qwen3 +- qlora +- fine-tuned +--- +## About + + + + + + + + + +static quants of https://huggingface.co/zeon01/aiqarus-agent-4b + + + +***For a convenient overview and download list, visit our [model page for this model](https://hf.tst.eu/model#aiqarus-agent-4b-GGUF).*** + +weighted/imatrix quants are available at https://huggingface.co/mradermacher/aiqarus-agent-4b-i1-GGUF +## 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/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q2_K.gguf) | Q2_K | 1.8 | | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q3_K_S.gguf) | Q3_K_S | 2.0 | | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q3_K_M.gguf) | Q3_K_M | 2.2 | lower quality | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q3_K_L.gguf) | Q3_K_L | 2.3 | | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.IQ4_XS.gguf) | IQ4_XS | 2.4 | | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q4_K_S.gguf) | Q4_K_S | 2.5 | fast, recommended | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q4_K_M.gguf) | Q4_K_M | 2.6 | fast, recommended | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q5_K_S.gguf) | Q5_K_S | 2.9 | | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q5_K_M.gguf) | Q5_K_M | 3.0 | | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q6_K.gguf) | Q6_K | 3.4 | very good quality | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.Q8_0.gguf) | Q8_0 | 4.4 | fast, best quality | +| [GGUF](https://huggingface.co/mradermacher/aiqarus-agent-4b-GGUF/resolve/main/aiqarus-agent-4b.f16.gguf) | f16 | 8.2 | 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/aiqarus-agent-4b.IQ4_XS.gguf b/aiqarus-agent-4b.IQ4_XS.gguf new file mode 100644 index 0000000..5964522 --- /dev/null +++ b/aiqarus-agent-4b.IQ4_XS.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb138ee113d3e09f28eae9b312cec77c6852b29f4767526df5e3a1eb12e811ef +size 2286316160 diff --git a/aiqarus-agent-4b.Q2_K.gguf b/aiqarus-agent-4b.Q2_K.gguf new file mode 100644 index 0000000..2ee5c89 --- /dev/null +++ b/aiqarus-agent-4b.Q2_K.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05bfe16cb41e8e79b8824eb87e5aaf550d2a5b7de86703c1119d53c9fa54641 +size 1669499520 diff --git a/aiqarus-agent-4b.Q3_K_L.gguf b/aiqarus-agent-4b.Q3_K_L.gguf new file mode 100644 index 0000000..bc77b96 --- /dev/null +++ b/aiqarus-agent-4b.Q3_K_L.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adc3971e08e6250aa83f6c4f789973187969a94c67a40a3130f9860676d2973 +size 2239785600 diff --git a/aiqarus-agent-4b.Q3_K_M.gguf b/aiqarus-agent-4b.Q3_K_M.gguf new file mode 100644 index 0000000..84373cd --- /dev/null +++ b/aiqarus-agent-4b.Q3_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363209e289869478d0505a40281c7173acbe7c88477be677b8f8704abe89c5d7 +size 2075617920 diff --git a/aiqarus-agent-4b.Q3_K_S.gguf b/aiqarus-agent-4b.Q3_K_S.gguf new file mode 100644 index 0000000..d898e6b --- /dev/null +++ b/aiqarus-agent-4b.Q3_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c72a422be0b167bb9048c01d01b580085596fc92157ff15177af19fea0e4fd +size 1886997120 diff --git a/aiqarus-agent-4b.Q4_K_M.gguf b/aiqarus-agent-4b.Q4_K_M.gguf new file mode 100644 index 0000000..611f867 --- /dev/null +++ b/aiqarus-agent-4b.Q4_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437cacc2488870a59ae101aca7e40ae3eef61cc0d2c1b65236c85d2ef33026d3 +size 2497280640 diff --git a/aiqarus-agent-4b.Q4_K_S.gguf b/aiqarus-agent-4b.Q4_K_S.gguf new file mode 100644 index 0000000..c1f55e6 --- /dev/null +++ b/aiqarus-agent-4b.Q4_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9d88e563cf9becc9d981385bdc977ef4ca6871f25f34943c5e1d009d50f74c +size 2383309440 diff --git a/aiqarus-agent-4b.Q5_K_M.gguf b/aiqarus-agent-4b.Q5_K_M.gguf new file mode 100644 index 0000000..6bd6fb5 --- /dev/null +++ b/aiqarus-agent-4b.Q5_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6feb1302a9db268fb9cca4a43d1d9f017a1679a67ff7a6247e314de182dba5e3 +size 2889513600 diff --git a/aiqarus-agent-4b.Q5_K_S.gguf b/aiqarus-agent-4b.Q5_K_S.gguf new file mode 100644 index 0000000..de779a1 --- /dev/null +++ b/aiqarus-agent-4b.Q5_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0eb706cb8c15ed92ed72d61199228b5874a2c6782f1d0fa02a11f1f3542905a +size 2823711360 diff --git a/aiqarus-agent-4b.Q6_K.gguf b/aiqarus-agent-4b.Q6_K.gguf new file mode 100644 index 0000000..50ccd96 --- /dev/null +++ b/aiqarus-agent-4b.Q6_K.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f3ff19e422536e4a3eef0f5d08da558adbeedd451eb0ca4f4021bb6308faf9 +size 3306261120 diff --git a/aiqarus-agent-4b.Q8_0.gguf b/aiqarus-agent-4b.Q8_0.gguf new file mode 100644 index 0000000..e256e9d --- /dev/null +++ b/aiqarus-agent-4b.Q8_0.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c523a4fb4a6652b829128e94c98d198b7d17808fbcc42fa2ce1348b99ab6cea +size 4280405120 diff --git a/aiqarus-agent-4b.f16.gguf b/aiqarus-agent-4b.f16.gguf new file mode 100644 index 0000000..bfc46d8 --- /dev/null +++ b/aiqarus-agent-4b.f16.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eef3ae13b1e3c59598644e6b0a483af35e04dede5754496104404133eb0a0b2 +size 8051285120