add layer_norm_rms_eps to checkpoint convert script
This commit is contained in:
parent
ef899fbe89
commit
d71069c4fb
1 changed files with 1 additions and 0 deletions
|
@ -453,6 +453,7 @@ class Checkpoint:
|
|||
def save_gguf(self, gguf_writer):
|
||||
gguf_writer.add_architecture()
|
||||
gguf_writer.add_file_type(gguf.GGMLQuantizationType.F32)
|
||||
gguf_writer.add_layer_norm_rms_eps(1e-5)
|
||||
gguf_writer.add_uint32(LLM_KV_TRAINING_FILE_VERSION, 0)
|
||||
gguf_writer.add_uint32(LLM_KV_TRAINING_ITERATION_COUNT, self.train_its)
|
||||
gguf_writer.add_uint32(LLM_KV_TRAINING_SAMPLE_COUNT, self.train_samples)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue