ImagineV5 / Imagine /imagine-v5-ultra /comfy /checkpoint_pickle.py
azkavyro's picture
Added all files including vyro_workflows
6fecfbe
raw
history blame contribute delete
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)