mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-25 01:34:38 +01:00
Reload the model if the path exists in the request but the model has been unloaded
This commit is contained in:
parent
6a95c602b1
commit
9a528496a3
@ -148,7 +148,7 @@ def reload_models_if_necessary(context: Context, models_data: ModelsData, models
|
||||
models_to_reload = {
|
||||
model_type: path
|
||||
for model_type, path in models_data.model_paths.items()
|
||||
if context.model_paths.get(model_type) != path
|
||||
if context.model_paths.get(model_type) != path or (path is not None and context.models.get(model_type) is None)
|
||||
}
|
||||
|
||||
if models_data.model_paths.get("codeformer"):
|
||||
|
Loading…
Reference in New Issue
Block a user