Skip to content

Commit

Permalink
Add button to skip the current iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
tsngo authored and AUTOMATIC1111 committed Oct 8, 2022
1 parent 45cc0ce commit 786d9f6
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 8 deletions.
1 change: 1 addition & 0 deletions javascript/hints.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ titles = {
"Denoising strength": "Determines how little respect the algorithm should have for image's content. At 0, nothing will change, and at 1 you'll get an unrelated image. With values below 1.0, processing will take less steps than the Sampling Steps slider specifies.",
"Denoising strength change factor": "In loopback mode, on each loop the denoising strength is multiplied by this value. <1 means decreasing variety so your sequence will converge on a fixed picture. >1 means increasing variety so your sequence will become more and more chaotic.",

"Skip": "Stop processing current image and continue processing.",
"Interrupt": "Stop processing images and return any results accumulated so far.",
"Save": "Write image to a directory (default - log/images) and generation parameters into csv file.",

Expand Down
20 changes: 14 additions & 6 deletions javascript/progressbar.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// code related to showing and updating progressbar shown as the image is being made
global_progressbars = {}

function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_interrupt, id_preview, id_gallery){
function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_skip, id_interrupt, id_preview, id_gallery){
var progressbar = gradioApp().getElementById(id_progressbar)
var skip = id_skip ? gradioApp().getElementById(id_skip) : null
var interrupt = gradioApp().getElementById(id_interrupt)

if(opts.show_progress_in_title && progressbar && progressbar.offsetParent){
Expand Down Expand Up @@ -32,30 +33,37 @@ function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_inte

var progressDiv = gradioApp().querySelectorAll('#' + id_progressbar_span).length > 0;
if(!progressDiv){
if (skip) {
skip.style.display = "none"
}
interrupt.style.display = "none"
}
}

window.setTimeout(function(){ requestMoreProgress(id_part, id_progressbar_span, id_interrupt) }, 500)
window.setTimeout(function() { requestMoreProgress(id_part, id_progressbar_span, id_skip, id_interrupt) }, 500)
});
mutationObserver.observe( progressbar, { childList:true, subtree:true })
}
}

onUiUpdate(function(){
check_progressbar('txt2img', 'txt2img_progressbar', 'txt2img_progress_span', 'txt2img_interrupt', 'txt2img_preview', 'txt2img_gallery')
check_progressbar('img2img', 'img2img_progressbar', 'img2img_progress_span', 'img2img_interrupt', 'img2img_preview', 'img2img_gallery')
check_progressbar('ti', 'ti_progressbar', 'ti_progress_span', 'ti_interrupt', 'ti_preview', 'ti_gallery')
check_progressbar('txt2img', 'txt2img_progressbar', 'txt2img_progress_span', 'txt2img_skip', 'txt2img_interrupt', 'txt2img_preview', 'txt2img_gallery')
check_progressbar('img2img', 'img2img_progressbar', 'img2img_progress_span', 'img2img_skip', 'img2img_interrupt', 'img2img_preview', 'img2img_gallery')
check_progressbar('ti', 'ti_progressbar', 'ti_progress_span', '', 'ti_interrupt', 'ti_preview', 'ti_gallery')
})

function requestMoreProgress(id_part, id_progressbar_span, id_interrupt){
function requestMoreProgress(id_part, id_progressbar_span, id_skip, id_interrupt){
btn = gradioApp().getElementById(id_part+"_check_progress");
if(btn==null) return;

btn.click();
var progressDiv = gradioApp().querySelectorAll('#' + id_progressbar_span).length > 0;
var skip = id_skip ? gradioApp().getElementById(id_skip) : null
var interrupt = gradioApp().getElementById(id_interrupt)
if(progressDiv && interrupt){
if (skip) {
skip.style.display = "block"
}
interrupt.style.display = "block"
}
}
Expand Down
4 changes: 4 additions & 0 deletions modules/img2img.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ def process_batch(p, input_dir, output_dir, args):

for i, image in enumerate(images):
state.job = f"{i+1} out of {len(images)}"
if state.skipped:
state.skipped = False
state.interrupted = False
continue

if state.interrupted:
break
Expand Down
4 changes: 4 additions & 0 deletions modules/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,10 @@ def infotext(iteration=0, position_in_batch=0):
state.job_count = p.n_iter

for n in range(p.n_iter):
if state.skipped:
state.skipped = False
state.interrupted = False

if state.interrupted:
break

Expand Down
5 changes: 5 additions & 0 deletions modules/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ def selected_hypernetwork():


class State:
skipped = False
interrupted = False
job = ""
job_no = 0
Expand All @@ -96,6 +97,10 @@ class State:
current_image_sampling_step = 0
textinfo = None

def skip(self):
self.skipped = True
self.interrupted = True

def interrupt(self):
self.interrupted = True

Expand Down
8 changes: 8 additions & 0 deletions modules/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ def f(*args, extra_outputs_array=extra_outputs, **kwargs):
# last item is always HTML
res[-1] += f"<div class='performance'><p class='time'>Time taken: <wbr>{elapsed_text}</p>{vram_html}</div>"

shared.state.skipped = False
shared.state.interrupted = False
shared.state.job_count = 0

Expand Down Expand Up @@ -411,9 +412,16 @@ def create_toprow(is_img2img):

with gr.Column(scale=1):
with gr.Row():
skip = gr.Button('Skip', elem_id=f"{id_part}_skip")
interrupt = gr.Button('Interrupt', elem_id=f"{id_part}_interrupt")
submit = gr.Button('Generate', elem_id=f"{id_part}_generate", variant='primary')

skip.click(
fn=lambda: shared.state.skip(),
inputs=[],
outputs=[],
)

interrupt.click(
fn=lambda: shared.state.interrupt(),
inputs=[],
Expand Down
14 changes: 12 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -393,10 +393,20 @@ input[type="range"]{

#txt2img_interrupt, #img2img_interrupt{
position: absolute;
width: 100%;
width: 50%;
height: 72px;
background: #b4c0cc;
border-radius: 8px;
border-radius: 0px;
display: none;
}

#txt2img_skip, #img2img_skip{
position: absolute;
width: 50%;
right: 0px;
height: 72px;
background: #b4c0cc;
border-radius: 0px;
display: none;
}

Expand Down
1 change: 1 addition & 0 deletions webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def f(*args, **kwargs):
shared.state.current_latent = None
shared.state.current_image = None
shared.state.current_image_sampling_step = 0
shared.state.skipped = False
shared.state.interrupted = False
shared.state.textinfo = None

Expand Down

0 comments on commit 786d9f6

Please sign in to comment.