disable refiner when same as base
This commit is contained in:
parent
5e8a77fdac
commit
a9bb1079cf
@ -1 +1 @@
|
|||||||
version = '2.1.780'
|
version = '2.1.781'
|
||||||
|
@ -155,6 +155,10 @@ def worker():
|
|||||||
|
|
||||||
use_style = len(style_selections) > 0
|
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
|
modules.patch.adaptive_cfg = advanced_parameters.adaptive_cfg
|
||||||
print(f'[Parameters] Adaptive CFG = {modules.patch.adaptive_cfg}')
|
print(f'[Parameters] Adaptive CFG = {modules.patch.adaptive_cfg}')
|
||||||
|
|
||||||
|
@ -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.**
|
**(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
|
# 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.
|
* 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user