This commit is contained in:
ryan-mangeno 2025-08-28 12:36:26 -04:00
parent 8f328431a1
commit 9805635c12
1 changed files with 0 additions and 1 deletions

View File

@ -133,7 +133,6 @@ class ModelBase:
self.ftype = gguf.LlamaFileType.MOSTLY_BF16
# Configure GGUF Writer
print(f"arch: {gguf.MODEL_ARCH_NAMES[self.model_arch]}")
self.gguf_writer = gguf.GGUFWriter(path=None, arch=gguf.MODEL_ARCH_NAMES[self.model_arch], endianess=self.endianess, use_temp_file=self.use_temp_file,
split_max_tensors=split_max_tensors, split_max_size=split_max_size, dry_run=dry_run, small_first_shard=small_first_shard)