fix: when find already_loaded model, remove loaded by array index

This commit is contained in:
王怀宗 2024-03-26 13:53:16 +08:00
parent dfbdb5a135
commit f4633cb9c0
1 changed files with 1 additions and 1 deletions

View File

@ -796,7 +796,7 @@ def reuse_model_from_already_loaded(sd_model, checkpoint_info, timer):
if len(model_data.loaded_sd_models) > shared.opts.sd_checkpoints_limit > 0:
print(f"Unloading model {len(model_data.loaded_sd_models)} over the limit of {shared.opts.sd_checkpoints_limit}: {loaded_model.sd_checkpoint_info.title}")
model_data.loaded_sd_models.pop()
del model_data.loaded_sd_models[i]
send_model_to_trash(loaded_model)
timer.record("send model to trash")