custom_ai / ldm_patched /modules /checkpoint_pickle.py
tharms's picture
initial version branched from Fooocus
b66adbc
raw
history blame
286 Bytes
import pickle
load = pickle.load
class Empty:
pass
class Unpickler(pickle.Unpickler):
def find_class(self, module, name):
#TODO: safe unpickle
if module.startswith("pytorch_lightning"):
return Empty
return super().find_class(module, name)