From 4d9885ef22dc04cf3857152a29d8e5fe7ff60609 Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Thu, 25 Jun 2026 13:45:12 +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: SinpxAI/Mistral-7B-Instruct-v0.2-GGUF Source: Original Platform --- .gitattributes | 57 ++++++++++++++++++++++++++++ README.md | 26 +++++++++++++ configuration.json | 1 + mistral-7b-instruct-v0.2.Q2_K.gguf | 3 ++ mistral-7b-instruct-v0.2.Q3_K_L.gguf | 3 ++ mistral-7b-instruct-v0.2.Q3_K_M.gguf | 3 ++ mistral-7b-instruct-v0.2.Q3_K_S.gguf | 3 ++ mistral-7b-instruct-v0.2.Q4_0.gguf | 3 ++ mistral-7b-instruct-v0.2.Q4_K_M.gguf | 3 ++ mistral-7b-instruct-v0.2.Q4_K_S.gguf | 3 ++ mistral-7b-instruct-v0.2.Q5_0.gguf | 3 ++ mistral-7b-instruct-v0.2.Q5_K_M.gguf | 3 ++ mistral-7b-instruct-v0.2.Q5_K_S.gguf | 3 ++ mistral-7b-instruct-v0.2.Q6_K.gguf | 3 ++ mistral-7b-instruct-v0.2.Q8_0.gguf | 3 ++ 15 files changed, 120 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md create mode 100644 configuration.json create mode 100644 mistral-7b-instruct-v0.2.Q2_K.gguf create mode 100644 mistral-7b-instruct-v0.2.Q3_K_L.gguf create mode 100644 mistral-7b-instruct-v0.2.Q3_K_M.gguf create mode 100644 mistral-7b-instruct-v0.2.Q3_K_S.gguf create mode 100644 mistral-7b-instruct-v0.2.Q4_0.gguf create mode 100644 mistral-7b-instruct-v0.2.Q4_K_M.gguf create mode 100644 mistral-7b-instruct-v0.2.Q4_K_S.gguf create mode 100644 mistral-7b-instruct-v0.2.Q5_0.gguf create mode 100644 mistral-7b-instruct-v0.2.Q5_K_M.gguf create mode 100644 mistral-7b-instruct-v0.2.Q5_K_S.gguf create mode 100644 mistral-7b-instruct-v0.2.Q6_K.gguf create mode 100644 mistral-7b-instruct-v0.2.Q8_0.gguf diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fd4c4b6 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,57 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bin.* filter=lfs diff=lfs merge=lfs -text +*.bz2 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 +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack 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 +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +saved_model/**/* 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 +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zstandard filter=lfs diff=lfs merge=lfs -text +*.tfevents* filter=lfs diff=lfs merge=lfs -text +*.db* filter=lfs diff=lfs merge=lfs -text +*.ark* filter=lfs diff=lfs merge=lfs -text +**/*ckpt*data* filter=lfs diff=lfs merge=lfs -text +**/*ckpt*.meta filter=lfs diff=lfs merge=lfs -text +**/*ckpt*.index filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text + +*.gguf filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..60f3ad0 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +--- +#以下为文本生成的 "tasks"示例,您可以从此网页中了解更多相关信息:https://modelscope.cn/docs/%E4%BB%BB%E5%8A%A1%E7%9A%84%E4%BB%8B%E7%BB%8D +#tasks: +#- text-generation +license: Apache License 2.0 +--- +### 当前模型的贡献者未提供更加详细的模型介绍。模型文件和权重,可浏览“模型文件”页面获取。 +#### 您可以通过如下git clone命令,或者ModelScope SDK来下载模型 + +SDK下载 +```bash +#安装ModelScope +pip install modelscope +``` +```python +#SDK模型下载 +from modelscope import snapshot_download +model_dir = snapshot_download('SinpxAI/Mistral-7B-Instruct-v0.2-GGUF') +``` +Git下载 +``` +#Git模型下载 +git clone https://www.modelscope.cn/SinpxAI/Mistral-7B-Instruct-v0.2-GGUF.git +``` + +

如果您是本模型的贡献者,我们邀请您根据模型贡献文档,及时完善模型卡片内容。

\ No newline at end of file diff --git a/configuration.json b/configuration.json new file mode 100644 index 0000000..3822542 --- /dev/null +++ b/configuration.json @@ -0,0 +1 @@ +{"framework": "\u5176\u4ed6", "task": "text-generation"} \ No newline at end of file diff --git a/mistral-7b-instruct-v0.2.Q2_K.gguf b/mistral-7b-instruct-v0.2.Q2_K.gguf new file mode 100644 index 0000000..7dda26d --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q2_K.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b714fba99347efc7de2f108c5e3e0e57077cae157ba036aa0d77e8d8266a32f1 +size 2719242432 diff --git a/mistral-7b-instruct-v0.2.Q3_K_L.gguf b/mistral-7b-instruct-v0.2.Q3_K_L.gguf new file mode 100644 index 0000000..0b6a9d4 --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q3_K_L.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacc7597c609c5419e9abb05f3deb6bb225ef79761dab42c0fda90ab11505199 +size 3822024896 diff --git a/mistral-7b-instruct-v0.2.Q3_K_M.gguf b/mistral-7b-instruct-v0.2.Q3_K_M.gguf new file mode 100644 index 0000000..21f50f5 --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q3_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3075db11257986c873ac07a0985608af91b8470f0e37a97d835c7c14a9051731 +size 3518986432 diff --git a/mistral-7b-instruct-v0.2.Q3_K_S.gguf b/mistral-7b-instruct-v0.2.Q3_K_S.gguf new file mode 100644 index 0000000..92615c6 --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q3_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54eaad761e2b883b0075a8cbb8acc5b415047f3b920fb2dee60aa34cb1e893b +size 3164567744 diff --git a/mistral-7b-instruct-v0.2.Q4_0.gguf b/mistral-7b-instruct-v0.2.Q4_0.gguf new file mode 100644 index 0000000..0789d5c --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q4_0.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e855666b377f1e6624d27f16d5cce285679762c1804a72b85ef6bf82f36c47 +size 4108916928 diff --git a/mistral-7b-instruct-v0.2.Q4_K_M.gguf b/mistral-7b-instruct-v0.2.Q4_K_M.gguf new file mode 100644 index 0000000..b53a240 --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q4_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0403671e9ffe6e933465cfd97a485e3ac4db7217327f2bafb725db05f87409fd +size 4368439488 diff --git a/mistral-7b-instruct-v0.2.Q4_K_S.gguf b/mistral-7b-instruct-v0.2.Q4_K_S.gguf new file mode 100644 index 0000000..b67831e --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q4_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c38a749f7d2619fec94231509d0c8403057f0ba75c39678419b2e58b1c875b7 +size 4140374208 diff --git a/mistral-7b-instruct-v0.2.Q5_0.gguf b/mistral-7b-instruct-v0.2.Q5_0.gguf new file mode 100644 index 0000000..4e435af --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q5_0.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340e5f66d3ef9eaff7996ab431d09f9b1eb61ec8c96f0250d341935920becabd +size 4997716160 diff --git a/mistral-7b-instruct-v0.2.Q5_K_M.gguf b/mistral-7b-instruct-v0.2.Q5_K_M.gguf new file mode 100644 index 0000000..6b8ddd5 --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q5_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1fbfb0dce3ffbc7a7dd7cb5a6ba6f9c66e55a446b2d5c6a626273048f6a93c +size 5131409600 diff --git a/mistral-7b-instruct-v0.2.Q5_K_S.gguf b/mistral-7b-instruct-v0.2.Q5_K_S.gguf new file mode 100644 index 0000000..be4a791 --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q5_K_S.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521c2650524dee348ae4a0756a2fa735335dac693814182918fbc317c48180f4 +size 4997716160 diff --git a/mistral-7b-instruct-v0.2.Q6_K.gguf b/mistral-7b-instruct-v0.2.Q6_K.gguf new file mode 100644 index 0000000..0c5863f --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q6_K.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a032c33c1d68d22df09e2b23202476027b465ece1357afd3484bea4a37788fb +size 5942065344 diff --git a/mistral-7b-instruct-v0.2.Q8_0.gguf b/mistral-7b-instruct-v0.2.Q8_0.gguf new file mode 100644 index 0000000..0d1c9aa --- /dev/null +++ b/mistral-7b-instruct-v0.2.Q8_0.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26bae853431ad173699df6c4794110681451efeb9a6c481a24574ef87bc636ac +size 7695857856