Files
ModelHub XC 66ebbdcd29 初始化项目,由ModelHub XC社区提供模型
Model: eaddario/gemma-3-12b-it-pruned-GGUF
Source: Original Platform
2026-07-21 18:50:10 +08:00

16 lines
588 B
Markdown

# 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
```