use shallow copy for #13535
This commit is contained in:
parent
7cc96429f2
commit
0619df9835
|
@ -1,5 +1,4 @@
|
|||
import collections
|
||||
import copy
|
||||
import os.path
|
||||
import sys
|
||||
import gc
|
||||
|
@ -360,7 +359,7 @@ def load_model_weights(model, checkpoint_info: CheckpointInfo, state_dict, timer
|
|||
|
||||
if shared.opts.sd_checkpoint_cache > 0:
|
||||
# cache newly loaded model
|
||||
checkpoints_loaded[checkpoint_info] = copy.deepcopy(state_dict)
|
||||
checkpoints_loaded[checkpoint_info] = state_dict.copy()
|
||||
|
||||
model.load_state_dict(state_dict, strict=False)
|
||||
timer.record("apply weights to model")
|
||||
|
|
Loading…
Reference in New Issue