Commit 6a04a7f2 authored by AUTOMATIC's avatar AUTOMATIC

fix an error loading Lora with empty values in metadata

parent 8b35b64e
......@@ -225,7 +225,7 @@ def read_metadata_from_safetensors(filename):
res = {}
for k, v in json_obj.get("__metadata__", {}).items():
res[k] = v
if isinstance(v, str) and v[0] == '{':
if isinstance(v, str) and v[0:1] == '{':
try:
res[k] = json.loads(v)
except Exception as e:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment