diff --git a/fooocus_version.py b/fooocus_version.py index 585394e..5e74c88 100644 --- a/fooocus_version.py +++ b/fooocus_version.py @@ -1 +1 @@ -version = '2.1.780' +version = '2.1.781' diff --git a/modules/async_worker.py b/modules/async_worker.py index b54aff9..e26fd9c 100644 --- a/modules/async_worker.py +++ b/modules/async_worker.py @@ -155,6 +155,10 @@ def worker(): use_style = len(style_selections) > 0 + if base_model_name == refiner_model_name: + print(f'Refiner disabled because base model and refiner are same.') + refiner_model_name = 'None' + modules.patch.adaptive_cfg = advanced_parameters.adaptive_cfg print(f'[Parameters] Adaptive CFG = {modules.patch.adaptive_cfg}') diff --git a/update_log.md b/update_log.md index 3f1c1be..1ca3b0e 100644 --- a/update_log.md +++ b/update_log.md @@ -1,5 +1,9 @@ **(2023 Oct 26) Hi all, the feature updating of Fooocus will (really, really, this time) be paused for about two or three weeks because we really have some other workloads. Thanks for the passion of you all (and we in fact have kept updating even after last pausing announcement a week ago, because of many great feedbacks) - see you soon and we will come back in mid November. However, you may still see updates if other collaborators are fixing bugs or solving problems.** +# 2.1.781 + +* Disable refiner to speed up when new users mistakenly set same model to base and refiner. + # 2.1.779 * Disable image grid by default because many users reports performance issues. For example, https://github.com/lllyasviel/Fooocus/issues/829 and so on. The image grid will cause problem when user hard drive is not super fast, or when user internet connection is not very good (eg, run in remote). The option is moved to dev tools if users want to use it. We will take a look at it later.