File size: 5,126 Bytes
a660631
 
 
efa09bd
a660631
 
 
efa09bd
 
 
a660631
 
 
 
 
 
7a1ec93
a660631
 
f521e88
a660631
 
 
efa09bd
a660631
f521e88
a660631
efa09bd
 
7a1ec93
 
efa09bd
 
 
7a1ec93
 
 
 
 
efa09bd
a660631
f521e88
a660631
f521e88
a660631
f521e88
a6d82aa
 
 
f521e88
208f8fb
a660631
f521e88
efa09bd
 
 
 
 
 
 
 
 
f521e88
efa09bd
f521e88
efa09bd
f521e88
efa09bd
7a1ec93
 
 
 
efa09bd
 
 
 
 
 
 
 
a660631
f521e88
a660631
d6252d0
f521e88
d6252d0
f521e88
a660631
d6252d0
 
f521e88
d6252d0
efa09bd
f521e88
 
 
d6252d0
f521e88
a660631
 
f521e88
a660631
 
681c919
 
 
 
f521e88
681c919
3f0b2d3
 
681c919
 
 
 
 
a660631
074f54b
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#!/usr/bin/env python
from __future__ import annotations

import spaces
import gradio as gr
import torch

import PIL.Image
import numpy as np

from app_canny import create_demo as create_demo_canny
from app_depth import create_demo as create_demo_depth
from app_ip2p import create_demo as create_demo_ip2p
from app_lineart import create_demo as create_demo_lineart
from app_mlsd import create_demo as create_demo_mlsd
from app_normal import create_demo as create_demo_normal
from app_normal_old import create_demo as create_demo_normal_old
from app_openpose import create_demo as create_demo_openpose
from app_scribble import create_demo as create_demo_scribble
from app_scribble_interactive import create_demo as create_demo_scribble_interactive
from app_segmentation import create_demo as create_demo_segmentation
from app_shuffle import create_demo as create_demo_shuffle
from app_softedge import create_demo as create_demo_softedge
from app_tile import create_demo as create_demo_tile
from model import Model
from settings import ALLOW_CHANGING_BASE_MODEL, DEFAULT_MODEL_ID, SHOW_DUPLICATE_BUTTON

DESCRIPTION = r"""
<center>
<h1>ControlLoRA Version 3: LoRA Is All You Need to Control the Spatial Information of Stable Diffusion</h1>

<a href="https://huggingface.co/HighCWu/control-lora-v3">[Models]</a>
<a href="https://github.com/HighCWu/control-lora-v3">[Github]</a>
</center>

***Note:*** I used a high learning rate and a short number of steps for training, and the dataset was also generated, 
so the generation results may not be very good. 
It is recommended that researchers use real data, lower learning and longer training steps to train to achieve better generation results.

"""

model = Model(base_model_id=DEFAULT_MODEL_ID, task_name="Canny")

with gr.Blocks(css="style.css") as demo:
    gr.Markdown(DESCRIPTION)
    gr.DuplicateButton(
        value="Duplicate Space for private use",
        elem_id="duplicate-button",
        visible=SHOW_DUPLICATE_BUTTON,
    )

    with gr.Tabs():
        with gr.TabItem("Canny"):
            create_demo_canny(spaces.GPU(model.process_canny))
        # with gr.TabItem("MLSD"):
        #     create_demo_mlsd(spaces.GPU(model.process_mlsd))
        # with gr.TabItem("Scribble"):
        #     create_demo_scribble(spaces.GPU(model.process_scribble))
        # with gr.TabItem("Scribble Interactive"):
        #     create_demo_scribble_interactive(spaces.GPU(model.process_scribble_interactive))
        # with gr.TabItem("SoftEdge"):
        #     create_demo_softedge(spaces.GPU(model.process_softedge))
        with gr.TabItem("OpenPose"):
            create_demo_openpose(spaces.GPU(model.process_openpose))
        with gr.TabItem("Segmentation"):
            create_demo_segmentation(spaces.GPU(model.process_segmentation))
        with gr.TabItem("Depth"):
            create_demo_depth(spaces.GPU(model.process_depth))
        # with gr.TabItem("Normal map"):
        #     create_demo_normal(spaces.GPU(model.process_normal))
        with gr.TabItem("Normal map (old)"):
            create_demo_normal_old(spaces.GPU(model.process_normal_old))
        # with gr.TabItem("Lineart"):
        #     create_demo_lineart(spaces.GPU(model.process_lineart))
        # with gr.TabItem("Content Shuffle"):
        #     create_demo_shuffle(spaces.GPU(model.process_shuffle))
        # with gr.TabItem("Instruct Pix2Pix"):
        #     create_demo_ip2p(spaces.GPU(model.process_ip2p))
        with gr.TabItem("Tile"):
            create_demo_tile(spaces.GPU(model.process_tile))

    with gr.Accordion(label="Base model", open=False):
        with gr.Row():
            with gr.Column(scale=5):
                current_base_model = gr.Text(label="Current base model")
            with gr.Column(scale=1):
                check_base_model_button = gr.Button("Check current base model")
        with gr.Row():
            with gr.Column(scale=5):
                new_base_model_id = gr.Text(
                    label="New base model",
                    max_lines=1,
                    placeholder="SG161222/Realistic_Vision_V4.0_noVAE",
                    info="The base model must be compatible with Stable Diffusion v1.5.",
                    interactive=ALLOW_CHANGING_BASE_MODEL,
                )
            with gr.Column(scale=1):
                change_base_model_button = gr.Button("Change base model", interactive=ALLOW_CHANGING_BASE_MODEL)
        if not ALLOW_CHANGING_BASE_MODEL:
            gr.Markdown(
                """The base model is not allowed to be changed in this Space so as not to slow down the demo, but it can be changed if you duplicate the Space."""
            )

    check_base_model_button.click(
        fn=lambda: model.base_model_id,
        outputs=current_base_model,
        queue=False,
        api_name="check_base_model",
    )
    gr.on(
        triggers=[new_base_model_id.submit, change_base_model_button.click],
        fn=model.set_base_model,
        inputs=new_base_model_id,
        outputs=current_base_model,
        api_name=False,
    )

if __name__ == "__main__":
    demo.queue(max_size=20).launch()