use weights_only in conversion script

this restricts malicious weights from executing arbitrary code by restricting the unpickler to only loading tensors, primitive types, and dictionaries
pull/32/head
deepdiffuser 1 year ago
parent da1a4ff01f
commit 1ed5c7c75b

@ -86,7 +86,7 @@ for p in range(n_parts):
if (p > 0):
fname_out = sys.argv[1] + "/ggml-model-" + ftype_str[ftype] + ".bin" + "." + str(p)
model = torch.load(fname_model, map_location="cpu")
model = torch.load(fname_model, map_location="cpu", weights_only=True)
fout = open(fname_out, "wb")

Loading…
Cancel
Save