|
import gradio as gr
|
|
from multit2i import (
|
|
load_models,
|
|
find_model_list,
|
|
infer_multi,
|
|
save_gallery_images,
|
|
change_model,
|
|
get_model_info_md,
|
|
loaded_models,
|
|
get_positive_prefix,
|
|
get_positive_suffix,
|
|
get_negative_prefix,
|
|
get_negative_suffix,
|
|
get_recom_prompt_type,
|
|
set_recom_prompt_preset,
|
|
)
|
|
|
|
|
|
models = [
|
|
'yodayo-ai/kivotos-xl-2.0',
|
|
'yodayo-ai/holodayo-xl-2.1',
|
|
'cagliostrolab/animagine-xl-3.1',
|
|
'votepurchase/ponyDiffusionV6XL',
|
|
'eienmojiki/Anything-XL',
|
|
'eienmojiki/Starry-XL-v5.2',
|
|
'digiplay/majicMIX_sombre_v2',
|
|
'digiplay/majicMIX_realistic_v7',
|
|
'votepurchase/counterfeitV30_v30',
|
|
'Meina/MeinaMix_V11',
|
|
'KBlueLeaf/Kohaku-XL-Epsilon-rev3',
|
|
'kayfahaarukku/UrangDiffusion-1.1',
|
|
'Raelina/Rae-Diffusion-XL-V2',
|
|
'Raelina/Raemu-XL-V4',
|
|
]
|
|
|
|
models = ['Raelina/Rae-Diffusion-XL-V2']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
load_models(models, 10)
|
|
|
|
|
|
|
|
css = """"""
|
|
|
|
with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", css=css) as demo:
|
|
with gr.Column():
|
|
model_name = gr.Dropdown(label="Select Model", choices=list(loaded_models.keys()), value=list(loaded_models.keys())[0], allow_custom_value=True)
|
|
model_info = gr.Markdown(value=get_model_info_md(list(loaded_models.keys())[0]))
|
|
with gr.Accordion("Advanced settings", open=False):
|
|
image_num = gr.Slider(label="Number of Images", minimum=1, maximum=8, value=1, step=1)
|
|
with gr.Accordion("Recommended Prompt"):
|
|
recom_prompt_preset = gr.Radio(label="Set Presets", choices=get_recom_prompt_type(), value="Common")
|
|
positive_prefix = gr.CheckboxGroup(label="Use Positive Prefix", choices=get_positive_prefix(), value=[])
|
|
positive_suffix = gr.CheckboxGroup(label="Use Positive Suffix", choices=get_positive_suffix(), value=["Common"])
|
|
negative_prefix = gr.CheckboxGroup(label="Use Negative Prefix", choices=get_negative_prefix(), value=[], visible=False)
|
|
negative_suffix = gr.CheckboxGroup(label="Use Negative Suffix", choices=get_negative_suffix(), value=["Common"], visible=False)
|
|
prompt = gr.Text(label="Prompt", lines=1, max_lines=8, placeholder="1girl, solo, ...")
|
|
neg_prompt = gr.Text(label="Negative Prompt", lines=1, max_lines=8, placeholder="", visible=False)
|
|
run_button = gr.Button("Generate Image")
|
|
results = gr.Gallery(label="Gallery", interactive=False, show_download_button=True, show_share_button=False,
|
|
container=True, format="png", object_fit="contain")
|
|
image_files = gr.Files(label="Download", interactive=False)
|
|
clear_results = gr.Button("Clear Gallery / Download")
|
|
examples = gr.Examples(
|
|
examples = [
|
|
["souryuu asuka langley, 1girl, neon genesis evangelion, plugsuit, pilot suit, red bodysuit, sitting, crossing legs, black eye patch, cat hat, throne, symmetrical, looking down, from bottom, looking at viewer, outdoors"],
|
|
["sailor moon, magical girl transformation, sparkles and ribbons, soft pastel colors, crescent moon motif, starry night sky background, shoujo manga style"],
|
|
["kafuu chino, 1girl, solo"],
|
|
["1girl"],
|
|
["beautiful sunset"],
|
|
],
|
|
inputs=[prompt],
|
|
)
|
|
gr.Markdown(
|
|
f"""This demo was created in reference to the following demos.
|
|
- [Nymbo/Flood](https://huggingface.co./spaces/Nymbo/Flood).
|
|
- [Yntec/ToyWorldXL](https://huggingface.co./spaces/Yntec/ToyWorldXL).
|
|
<br>The first startup takes a mind-boggling amount of time, but not so much after the second.
|
|
This is due to the time it takes for Gradio to generate an example image to cache.
|
|
"""
|
|
)
|
|
gr.DuplicateButton(value="Duplicate Space")
|
|
|
|
model_name.change(change_model, [model_name], [model_info], queue=False, show_api=False)
|
|
gr.on(
|
|
triggers=[run_button.click, prompt.submit],
|
|
fn=infer_multi,
|
|
inputs=[prompt, neg_prompt, results, image_num, model_name,
|
|
positive_prefix, positive_suffix, negative_prefix, negative_suffix],
|
|
outputs=[results],
|
|
queue=True,
|
|
show_progress="full",
|
|
show_api=True,
|
|
).success(save_gallery_images, [results], [results, image_files], queue=False, show_api=False)
|
|
clear_results.click(lambda: (None, None), None, [results, image_files], queue=False, show_api=False)
|
|
recom_prompt_preset.change(set_recom_prompt_preset, [recom_prompt_preset],
|
|
[positive_prefix, positive_suffix, negative_prefix, negative_suffix], queue=False, show_api=False)
|
|
|
|
demo.queue()
|
|
demo.launch()
|
|
|