Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
67f447dd
Commit
67f447dd
authored
Oct 14, 2022
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
possibility to load checkpoint, clip skip, and hypernet from infotext
parent
0aec19d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
7 deletions
+45
-7
ui.py
modules/ui.py
+45
-7
No files found.
modules/ui.py
View file @
67f447dd
...
...
@@ -22,7 +22,7 @@ import gradio as gr
import
gradio.utils
import
gradio.routes
from
modules
import
sd_hijack
from
modules
import
sd_hijack
,
sd_models
from
modules.paths
import
script_path
from
modules.shared
import
opts
,
cmd_opts
if
cmd_opts
.
deepdanbooru
:
...
...
@@ -507,12 +507,38 @@ def setup_progressbar(progressbar, preview, id_part, textinfo=None):
)
def
apply_setting
(
key
,
value
):
if
value
is
None
:
return
gr
.
update
()
if
key
==
"sd_model_checkpoint"
:
ckpt_info
=
sd_models
.
get_closet_checkpoint_match
(
value
)
if
ckpt_info
is
not
None
:
value
=
ckpt_info
.
title
else
:
return
gr
.
update
()
comp_args
=
opts
.
data_labels
[
key
]
.
component_args
if
comp_args
and
isinstance
(
comp_args
,
dict
)
and
comp_args
.
get
(
'visible'
)
is
False
:
return
valtype
=
type
(
opts
.
data_labels
[
key
]
.
default
)
oldval
=
opts
.
data
[
key
]
opts
.
data
[
key
]
=
valtype
(
value
)
if
valtype
!=
type
(
None
)
else
value
if
oldval
!=
value
and
opts
.
data_labels
[
key
]
.
onchange
is
not
None
:
opts
.
data_labels
[
key
]
.
onchange
()
opts
.
save
(
shared
.
config_filename
)
return
value
def
create_ui
(
wrap_gradio_gpu_call
):
import
modules.img2img
import
modules.txt2img
with
gr
.
Blocks
(
analytics_enabled
=
False
)
as
txt2img_interface
:
txt2img_prompt
,
roll
,
txt2img_prompt_style
,
txt2img_negative_prompt
,
txt2img_prompt_style2
,
submit
,
_
,
_
,
txt2img_prompt_style_apply
,
txt2img_save_style
,
paste
,
token_counter
,
token_button
=
create_toprow
(
is_img2img
=
False
)
txt2img_prompt
,
roll
,
txt2img_prompt_style
,
txt2img_negative_prompt
,
txt2img_prompt_style2
,
submit
,
_
,
_
,
txt2img_prompt_style_apply
,
txt2img_save_style
,
txt2img_
paste
,
token_counter
,
token_button
=
create_toprow
(
is_img2img
=
False
)
dummy_component
=
gr
.
Label
(
visible
=
False
)
txt_prompt_img
=
gr
.
File
(
label
=
""
,
elem_id
=
"txt2img_prompt_image"
,
file_count
=
"single"
,
type
=
"bytes"
,
visible
=
False
)
...
...
@@ -684,11 +710,10 @@ def create_ui(wrap_gradio_gpu_call):
(
firstphase_width
,
"First pass size-1"
),
(
firstphase_height
,
"First pass size-2"
),
]
modules
.
generation_parameters_copypaste
.
connect_paste
(
paste
,
txt2img_paste_fields
,
txt2img_prompt
)
token_button
.
click
(
fn
=
update_token_counter
,
inputs
=
[
txt2img_prompt
,
steps
],
outputs
=
[
token_counter
])
with
gr
.
Blocks
(
analytics_enabled
=
False
)
as
img2img_interface
:
img2img_prompt
,
roll
,
img2img_prompt_style
,
img2img_negative_prompt
,
img2img_prompt_style2
,
submit
,
img2img_interrogate
,
img2img_deepbooru
,
img2img_prompt_style_apply
,
img2img_save_style
,
paste
,
token_counter
,
token_button
=
create_toprow
(
is_img2img
=
True
)
img2img_prompt
,
roll
,
img2img_prompt_style
,
img2img_negative_prompt
,
img2img_prompt_style2
,
submit
,
img2img_interrogate
,
img2img_deepbooru
,
img2img_prompt_style_apply
,
img2img_save_style
,
img2img_
paste
,
token_counter
,
token_button
=
create_toprow
(
is_img2img
=
True
)
with
gr
.
Row
(
elem_id
=
'img2img_progress_row'
):
img2img_prompt_img
=
gr
.
File
(
label
=
""
,
elem_id
=
"img2img_prompt_image"
,
file_count
=
"single"
,
type
=
"bytes"
,
visible
=
False
)
...
...
@@ -938,7 +963,6 @@ def create_ui(wrap_gradio_gpu_call):
(
seed_resize_from_h
,
"Seed resize from-2"
),
(
denoising_strength
,
"Denoising strength"
),
]
modules
.
generation_parameters_copypaste
.
connect_paste
(
paste
,
img2img_paste_fields
,
img2img_prompt
)
token_button
.
click
(
fn
=
update_token_counter
,
inputs
=
[
img2img_prompt
,
steps
],
outputs
=
[
token_counter
])
with
gr
.
Blocks
(
analytics_enabled
=
False
)
as
extras_interface
:
...
...
@@ -1580,8 +1604,22 @@ Requested path was: {f}
outputs
=
[
extras_image
],
)
modules
.
generation_parameters_copypaste
.
connect_paste
(
pnginfo_send_to_txt2img
,
txt2img_paste_fields
,
generation_info
,
'switch_to_txt2img'
)
modules
.
generation_parameters_copypaste
.
connect_paste
(
pnginfo_send_to_img2img
,
img2img_paste_fields
,
generation_info
,
'switch_to_img2img_img2img'
)
settings_map
=
{
'sd_hypernetwork'
:
'Hypernet'
,
'CLIP_stop_at_last_layers'
:
'Clip skip'
,
'sd_model_checkpoint'
:
'Model hash'
,
}
settings_paste_fields
=
[
(
component_dict
[
k
],
lambda
d
,
k
=
k
,
v
=
v
:
apply_setting
(
k
,
d
.
get
(
v
,
None
)))
for
k
,
v
in
settings_map
.
items
()
]
modules
.
generation_parameters_copypaste
.
connect_paste
(
txt2img_paste
,
txt2img_paste_fields
+
settings_paste_fields
,
txt2img_prompt
)
modules
.
generation_parameters_copypaste
.
connect_paste
(
img2img_paste
,
img2img_paste_fields
+
settings_paste_fields
,
img2img_prompt
)
modules
.
generation_parameters_copypaste
.
connect_paste
(
pnginfo_send_to_txt2img
,
txt2img_paste_fields
+
settings_paste_fields
,
generation_info
,
'switch_to_txt2img'
)
modules
.
generation_parameters_copypaste
.
connect_paste
(
pnginfo_send_to_img2img
,
img2img_paste_fields
+
settings_paste_fields
,
generation_info
,
'switch_to_img2img_img2img'
)
ui_config_file
=
cmd_opts
.
ui_config_file
ui_settings
=
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment