fix an error loading Lora with empty values in metadata

This commit is contained in:
AUTOMATIC 2023-03-14 11:22:29 +03:00
parent 8b35b64e11
commit 6a04a7f20f

View File

@ -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: