convert : fix invalid params in write_vocab_only (#1975)

This commit is contained in:
AN Long 2023-06-24 19:02:06 +08:00 committed by GitHub
parent f2c754e1c3
commit c943d823c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -998,9 +998,9 @@ class OutputFile:
def write_vocab_only(fname_out: Path, vocab: Vocab) -> None:
of = OutputFile(fname_out)
params = Params(n_vocab=vocab.vocab_size, n_embd=0, n_mult=0,
n_head=1, n_layer=0, file_type=GGMLFileType.AllF32)
n_head=1, n_layer=0)
of = OutputFile(fname_out)
of.write_file_header(params)
of.write_file_header(params, file_type=GGMLFileType.AllF32)
of.write_vocab(vocab)
of.fout.close()