# 'Deforum' plugin for Automatic1111's Stable Diffusion WebUI. | |
# Copyright (C) 2023 Artem Khrapov (kabachuha) and Deforum team listed in AUTHORS.md | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Affero General Public License as published by | |
# the Free Software Foundation, version 3 of the License. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU Affero General Public License for more details. | |
# | |
# You should have received a copy of the GNU Affero General Public License | |
# along with this program. If not, see <https://www.gnu.org/licenses/>. | |
# Contact the dev team: https://discord.gg/deforum | |
import gradio as gr | |
# print (cnet_1.get_modules()) | |
# *** TODO: re-enable table printing! disabled only temp! 13-04-23 *** | |
# table = Table(title="ControlNet params",padding=0, box=box.ROUNDED) | |
# TODO: auto infer the names and the values for the table | |
# field_names = [] | |
# field_names += ["module", "model", "weight", "inv", "guide_start", "guide_end", "guess", "resize", "rgb_bgr", "proc res", "thr a", "thr b"] | |
# for field_name in field_names: | |
# table.add_column(field_name, justify="center") | |
# cn_model_name = str(controlnet_args.cn_1_model) | |
# rows = [] | |
# rows += [controlnet_args.cn_1_module, cn_model_name[len('control_'):] if 'control_' in cn_model_name else cn_model_name, controlnet_args.cn_1_weight, controlnet_args.cn_1_invert_image, controlnet_args.cn_1_guidance_start, controlnet_args.cn_1_guidance_end, controlnet_args.cn_1_guess_mode, controlnet_args.cn_1_resize_mode, controlnet_args.cn_1_rgbbgr_mode, controlnet_args.cn_1_processor_res, controlnet_args.cn_1_threshold_a, controlnet_args.cn_1_threshold_b] | |
# rows = [str(x) for x in rows] | |
# table.add_row(*rows) | |
# console.print(table) | |
def hide_ui_by_cn_status(choice): | |
return gr.update(visible=True) if choice else gr.update(visible=False) | |
def hide_file_textboxes(choice): | |
return gr.update(visible=False) if choice else gr.update(visible=True) | |
class ToolButton(gr.Button, gr.components.FormComponent): | |
"""Small button with single emoji as text, fits inside gradio forms""" | |
def __init__(self, **kwargs): | |
super().__init__(variant="tool", **kwargs) | |
def get_block_name(self): | |
return "button" | |
model_free_preprocessors = ["reference_only", "reference_adain", "reference_adain+attn"] | |
flag_preprocessor_resolution = "Preprocessor Resolution" | |
def build_sliders(module, pp, preprocessor_sliders_config): | |
grs = [] | |
if module not in preprocessor_sliders_config: | |
grs += [ | |
gr.update(label=flag_preprocessor_resolution, value=512, minimum=64, maximum=2048, step=1, visible=not pp, interactive=not pp), | |
gr.update(visible=False, interactive=False), | |
gr.update(visible=False, interactive=False), | |
gr.update(visible=True) | |
] | |
else: | |
for slider_config in preprocessor_sliders_config[module]: | |
if isinstance(slider_config, dict): | |
visible = True | |
if slider_config['name'] == flag_preprocessor_resolution: | |
visible = not pp | |
grs.append(gr.update( | |
label=slider_config['name'], | |
value=slider_config['value'], | |
minimum=slider_config['min'], | |
maximum=slider_config['max'], | |
step=slider_config['step'] if 'step' in slider_config else 1, | |
visible=visible, | |
interactive=visible)) | |
else: | |
grs.append(gr.update(visible=False, interactive=False)) | |
while len(grs) < 3: | |
grs.append(gr.update(visible=False, interactive=False)) | |
grs.append(gr.update(visible=True)) | |
if module in model_free_preprocessors: | |
grs += [gr.update(visible=False, value='None'), gr.update(visible=False)] | |
else: | |
grs += [gr.update(visible=True), gr.update(visible=True)] | |
return grs |