Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import copy
- import math
- import os
- import sys
- import traceback
- import shlex
- import random
- import modules.scripts as scripts
- import gradio as gr
- from modules.processing import Processed, process_images
- from PIL import Image
- from modules.shared import opts, cmd_opts, state
- def process_string_tag(tag):
- return tag
- def process_int_tag(tag):
- return int(tag)
- def process_float_tag(tag):
- return float(tag)
- def process_boolean_tag(tag):
- return True if (tag == "true") else False
- prompt_tags = {
- "sd_model": None,
- "outpath_samples": process_string_tag,
- "outpath_grids": process_string_tag,
- "prompt_for_display": process_string_tag,
- "prompt": process_string_tag,
- "negative_prompt": process_string_tag,
- "styles": process_string_tag,
- "seed": process_int_tag,
- "subseed_strength": process_float_tag,
- "subseed": process_int_tag,
- "seed_resize_from_h": process_int_tag,
- "seed_resize_from_w": process_int_tag,
- "sampler_index": process_int_tag,
- "batch_size": process_int_tag,
- "n_iter": process_int_tag,
- "steps": process_int_tag,
- "cfg_scale": process_float_tag,
- "width": process_int_tag,
- "height": process_int_tag,
- "restore_faces": process_boolean_tag,
- "tiling": process_boolean_tag,
- "do_not_save_samples": process_boolean_tag,
- "do_not_save_grid": process_boolean_tag
- }
- def cmdargs(line):
- args = shlex.split(line)
- pos = 0
- res = {}
- while pos < len(args):
- arg = args[pos]
- assert arg.startswith("--"), f'must start with "--": {arg}'
- tag = arg[2:]
- func = prompt_tags.get(tag, None)
- assert func, f'unknown commandline option: {arg}'
- assert pos+1 < len(args), f'missing argument for command line option {arg}'
- val = args[pos+1]
- res[tag] = func(val)
- pos += 2
- return res
- class Script(scripts.Script):
- def title(self):
- return "Prompts from file multi image"
- def show(self, is_img2img):
- return is_img2img
- def ui(self, is_img2img):
- if not is_img2img:
- return None
- # This checkbox would look nicer as two tabs, but there are two problems:
- # 1) There is a bug in Gradio 3.3 that prevents visibility from working on Tabs
- # 2) Even with Gradio 3.3.1, returning a control (like Tabs) that can't be used as input
- # causes a AttributeError: 'Tabs' object has no attribute 'preprocess' assert,
- # due to the way Script assumes all controls returned can be used as inputs.
- # Therefore, there's no good way to use grouping components right now,
- # so we will use a checkbox! :)
- input_dir = gr.Textbox(label="Input Dir", lines=1)
- start_line_txt = gr.Textbox(label="Start Line", lines=1, value = "1")
- end_line_txt = gr.Textbox(label="End Line", lines=1, value = "-1")
- rndimage_txt = gr.Textbox(label="Random Image Count", lines=1, value = "-1")
- checkbox_txt = gr.Checkbox(label="Show Textbox", value=False)
- file = gr.File(label="File with inputs", type='bytes')
- prompt_txt = gr.TextArea(label="Prompts")
- checkbox_txt.change(fn=lambda x: [gr.File.update(visible = not x), gr.TextArea.update(visible = x)], inputs=[checkbox_txt], outputs=[file, prompt_txt])
- return [checkbox_txt, file, prompt_txt, input_dir, start_line_txt, end_line_txt, rndimage_txt]
- def on_show(self, checkbox_txt, file, prompt_txt, input_dir, start_line_txt, end_line_txt, rndimage_txt):
- return [ gr.Checkbox.update(visible = True), gr.File.update(visible = not checkbox_txt), gr.TextArea.update(visible = checkbox_txt) , gr.Textbox.update(visible = input_dir), gr.Textbox.update(visible = start_line_txt), gr.Textbox.update(visible = end_line_txt), gr.Textbox.update(visible = rndimage_txt)]
- def run(self, p, checkbox_txt, data: bytes, prompt_txt: str, input_dir: str, start_line_txt: str, end_line_txt: str, rndimage_txt: str):
- if checkbox_txt:
- lines = [x.strip() for x in prompt_txt.splitlines()]
- else:
- lines = [x.strip() for x in data.decode('utf8', errors='ignore').split("\n")]
- if int(end_line_txt) == -1:
- end_line_txt = str(len(lines))
- lines = lines[int(start_line_txt) - 1:int(end_line_txt)]
- lines = [x for x in lines if len(x) > 0]
- p.do_not_save_grid = True
- job_count = 0
- jobs = []
- imagefiles = [file for file in [os.path.join(input_dir, x) for x in os.listdir(input_dir)] if os.path.isfile(file)]
- for line in lines:
- if "--" in line:
- try:
- args = cmdargs(line)
- except Exception:
- print(f"Error parsing line [line] as commandline:", file=sys.stderr)
- print(traceback.format_exc(), file=sys.stderr)
- args = {"prompt": line}
- else:
- args = {"prompt": line}
- n_iter = args.get("n_iter", 1)
- if n_iter != 1:
- job_count += n_iter
- else:
- job_count += 1
- jobs.append(args)
- print(f"Will process {len(lines)} lines in {job_count} jobs.")
- state.job_count = job_count
- images = []
- for n, args in enumerate(jobs):
- state.job = f"{state.job_no + 1} out of {state.job_count}"
- for k, v in args.items():
- if int(rndimage_txt) > -1:
- for i in range(int(rndimage_txt)):
- copy_p = copy.copy(p)
- setattr(copy_p, k, v)
- copy_p.init_images = [Image.open(imagefiles[random.randint(0, len(imagefiles) - 1)])]
- proc = process_images(copy_p)
- images += proc.images
- if (state.interrupted):
- state.job_count = 0
- jobs.clear()
- return Processed(p, images, p.seed, "")
- else:
- for i, cimage in enumerate(imagefiles):
- copy_p = copy.copy(p)
- setattr(copy_p, k, v)
- copy_p.init_images = [Image.open(cimage)]
- proc = process_images(copy_p)
- images += proc.images
- if (state.interrupted):
- state.job_count = 0
- jobs.clear()
- return Processed(p, images, p.seed, "")
- return Processed(p, images, p.seed, "")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement