fix an error loading Lora with empty values in metadata
This commit is contained in:
parent
8b35b64e11
commit
6a04a7f20f
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user