Skip to content

Commit

Permalink
adjust info text
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterChief95 committed Nov 22, 2024
1 parent 2dcfaca commit d358562
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scripts/forge_hidiffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ def ui(self, *args, **kwargs):

with InputAccordion(False, label="Advanced Options") as use_raunet_advanced:
with gr.Group():
gr.HTML(
"""
Recommended block settings:<br>
<ul><li>SD 1.5/2.1: Input 3 corresponds to Output 8, Input 6 to Output 5, Input 9 to Output 2</li>
<li>SDXL: Input 3 corresponds to Output 5, Input 6 to Output 2</li></ul>
"""
)
raunet_input_blocks = gr.Text(label="Input Blocks", value="3")
raunet_output_blocks = gr.Text(label="Output Blocks", value="8")
gr.Markdown(
Expand Down Expand Up @@ -126,7 +133,11 @@ def ui(self, *args, **kwargs):
gr.Markdown("Advanced MSW-MSA settings. For fine-tuning performance and quality improvements.")
with gr.Group():
gr.HTML(
"Recommended block settings:<br><ul><li>SD 1.5/2.1: input 1,2, output 9,10,11</li><li>SDXL: input 4,5, output 4,5</li></ul>"
"""
Recommended block settings:<br>
<ul><li>SD 1.5/2.1: input 1,2 for output 9,10,11</li>
<li>SDXL: input 4,5 for output 4,5</li></ul>
"""
)
mswmsa_input_blocks = gr.Text(label="Input Blocks", value="1,2")
mswmsa_middle_blocks = gr.Text(label="Middle Blocks", value="")
Expand Down

0 comments on commit d358562

Please sign in to comment.