Fix case where model was not properly unloaded in merging workflows.
This commit is contained in:
parent
6bbdcd28ae
commit
38c22e631a
|
@ -405,6 +405,8 @@ def unload_model_clones(model, unload_weights_only=True, force_unload=True):
|
||||||
if not force_unload:
|
if not force_unload:
|
||||||
if unload_weights_only and unload_weight == False:
|
if unload_weights_only and unload_weight == False:
|
||||||
return None
|
return None
|
||||||
|
else:
|
||||||
|
unload_weight = True
|
||||||
|
|
||||||
for i in to_unload:
|
for i in to_unload:
|
||||||
logging.debug("unload clone {} {}".format(i, unload_weight))
|
logging.debug("unload clone {} {}".format(i, unload_weight))
|
||||||
|
|
Loading…
Reference in New Issue