mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-04 03:29:00 +08:00
Merge b5c59388539955e4936490d000e8dca57211f8fb into 374bb6cc384d2a19422c0b07d69de0a41d1f3f4d
This commit is contained in:
commit
c5f96ea3ea
@ -37,6 +37,9 @@ class RestrictedUnpickler(pickle.Unpickler):
|
||||
if res is not None:
|
||||
return res
|
||||
|
||||
class Empty:
|
||||
pass
|
||||
|
||||
if module == 'collections' and name == 'OrderedDict':
|
||||
return getattr(collections, name)
|
||||
if module == 'torch._utils' and name in ['_rebuild_tensor_v2', '_rebuild_parameter', '_rebuild_device_tensor_from_numpy']:
|
||||
@ -51,12 +54,8 @@ class RestrictedUnpickler(pickle.Unpickler):
|
||||
return getattr(numpy, name)
|
||||
if module == '_codecs' and name == 'encode':
|
||||
return encode
|
||||
if module == "pytorch_lightning.callbacks" and name == 'model_checkpoint':
|
||||
import pytorch_lightning.callbacks
|
||||
return pytorch_lightning.callbacks.model_checkpoint
|
||||
if module == "pytorch_lightning.callbacks.model_checkpoint" and name == 'ModelCheckpoint':
|
||||
import pytorch_lightning.callbacks.model_checkpoint
|
||||
return pytorch_lightning.callbacks.model_checkpoint.ModelCheckpoint
|
||||
if module.startswith("pytorch_lightning"):
|
||||
return Empty
|
||||
if module == "__builtin__" and name == 'set':
|
||||
return set
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user