初始化项目,由ModelHub XC社区提供模型

Model: eaddario/gemma-3-12b-it-pruned-GGUF
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-21 18:50:10 +08:00
commit 66ebbdcd29
114 changed files with 24940 additions and 0 deletions

15
logits/README.md Normal file
View File

@@ -0,0 +1,15 @@
# Split logits file
Due to upload size limits imposed by Hugging Face, the logits file has been split into three parts, and you must recreate the original file before being able to use it.
There are several ways to do this, but the simplest is:
### Unix/Linux/MacOS
```sh
cat gemma-3-12b-it-F16-0001-0003.logits gemma-3-12b-it-F16-0002-0003.logits gemma-3-12b-it-F16-0003-0003.logits > gemma-3-12b-it-F16.logits
```
### Windows
```sh
copy gemma-3-12b-it-F16-0001-0003.logits + gemma-3-12b-it-F16-0002-0003.logits + gemma-3-12b-it-F16-0003-0003.logits gemma-3-12b-it-F16.logits /b
```