mirror of
https://github.com/ravenscroftj/turbopilot.git
synced 2024-10-01 01:06:01 -04:00
Merge pull request #5 from swanserquack/fix_vocab_encoding
Fix inability to load vocab.json on converting the 16B model due to encoding of the file not being set
This commit is contained in:
commit
5d2ea0a841
@ -59,7 +59,7 @@ if len(sys.argv) < 3:
|
||||
dir_model = sys.argv[1]
|
||||
fname_out = sys.argv[1] + "/ggml-model.bin"
|
||||
|
||||
with open(dir_model + "/vocab.json", "r") as f:
|
||||
with open(dir_model + "/vocab.json", "r", encoding="utf8") as f:
|
||||
encoder = json.load(f)
|
||||
|
||||
with open(dir_model + "/added_tokens.json", "r") as f:
|
||||
|
Loading…
Reference in New Issue
Block a user