use shallow copy for #13535

This commit is contained in:
AUTOMATIC1111 2023-10-14 08:01:04 +03:00
parent 7cc96429f2
commit 0619df9835
1 changed files with 1 additions and 2 deletions

View File

@ -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")