aboutsummaryrefslogtreecommitdiff
path: root/convert.py
diff options
context:
space:
mode:
authorAN Long <aisk@users.noreply.github.com>2023-06-24 19:02:06 +0800
committerGitHub <noreply@github.com>2023-06-24 14:02:06 +0300
commitc943d823c14cef33092205ca3944de6fdf7abf99 (patch)
tree37b0f1723e729d017157d60bb2fcba4317f7d70c /convert.py
parentf2c754e1c38936fdde74e4848ac468a696eb73c6 (diff)
convert : fix invalid params in write_vocab_only (#1975)
Diffstat (limited to 'convert.py')
-rw-r--r--convert.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/convert.py b/convert.py
index de6c39c..e340d22 100644
--- a/convert.py
+++ b/convert.py
@@ -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()