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