Commit 6a04a7f2 authored by AUTOMATIC's avatar AUTOMATIC
Browse files

fix an error loading Lora with empty values in metadata

parent 8b35b64e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: