-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathapp.py
More file actions
executable file
·102 lines (90 loc) · 4.3 KB
/
app.py
File metadata and controls
executable file
·102 lines (90 loc) · 4.3 KB
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
#!/usr/bin/env python
from __future__ import annotations
import os
import pathlib
import shlex
import subprocess
import gradio as gr
if os.getenv('SYSTEM') == 'spaces':
with open('patch') as f:
subprocess.run(shlex.split('patch -p1'), stdin=f, cwd='ControlNet')
base_url = 'https://huggingface.co/lllyasviel/ControlNet/resolve/main/annotator/ckpts/'
names = [
'body_pose_model.pth',
'dpt_hybrid-midas-501f0c75.pt',
'hand_pose_model.pth',
'mlsd_large_512_fp32.pth',
'mlsd_tiny_512_fp32.pth',
'network-bsds500.pth',
'upernet_global_small.pth',
]
for name in names:
command = f'wget https://huggingface.co/lllyasviel/ControlNet/resolve/main/annotator/ckpts/{name} -O {name}'
out_path = pathlib.Path(f'ControlNet/annotator/ckpts/{name}')
if out_path.exists():
continue
subprocess.run(shlex.split(command), cwd='ControlNet/annotator/ckpts/')
from gradio_canny2image import create_demo as create_demo_canny
from gradio_depth2image import create_demo as create_demo_depth
from gradio_fake_scribble2image import create_demo as create_demo_fake_scribble
from gradio_hed2image import create_demo as create_demo_hed
from gradio_hough2image import create_demo as create_demo_hough
from gradio_normal2image import create_demo as create_demo_normal
from gradio_pose2image import create_demo as create_demo_pose
from gradio_scribble2image import create_demo as create_demo_scribble
from gradio_scribble2image_interactive import \
create_demo as create_demo_scribble_interactive
from gradio_seg2image import create_demo as create_demo_seg
from model import (DEFAULT_BASE_MODEL_FILENAME, DEFAULT_BASE_MODEL_REPO,
DEFAULT_BASE_MODEL_URL, Model)
MAX_IMAGES = 4
ALLOW_CHANGING_BASE_MODEL = 'hysts/ControlNet-with-other-models'
model = Model()
with gr.Blocks(css='style.css') as demo:
with gr.Tabs():
with gr.TabItem('Canny'):
create_demo_canny(model.process_canny, max_images=MAX_IMAGES)
with gr.TabItem('Hough'):
create_demo_hough(model.process_hough, max_images=MAX_IMAGES)
with gr.TabItem('HED'):
create_demo_hed(model.process_hed, max_images=MAX_IMAGES)
with gr.TabItem('Scribble'):
create_demo_scribble(model.process_scribble, max_images=MAX_IMAGES)
with gr.TabItem('Scribble Interactive'):
create_demo_scribble_interactive(
model.process_scribble_interactive, max_images=MAX_IMAGES)
with gr.TabItem('Fake Scribble'):
create_demo_fake_scribble(model.process_fake_scribble,
max_images=MAX_IMAGES)
with gr.TabItem('Pose'):
create_demo_pose(model.process_pose, max_images=MAX_IMAGES)
with gr.TabItem('Segmentation'):
create_demo_seg(model.process_seg, max_images=MAX_IMAGES)
with gr.TabItem('Depth'):
create_demo_depth(model.process_depth, max_images=MAX_IMAGES)
with gr.TabItem('Normal map'):
create_demo_normal(model.process_normal, max_images=MAX_IMAGES)
with gr.Accordion(label='Base model', open=False):
current_base_model = gr.Text(label='Current base model',
value=DEFAULT_BASE_MODEL_URL)
with gr.Row():
base_model_repo = gr.Text(label='Base model repo',
max_lines=1,
placeholder=DEFAULT_BASE_MODEL_REPO,
interactive=ALLOW_CHANGING_BASE_MODEL)
base_model_filename = gr.Text(
label='Base model file',
max_lines=1,
placeholder=DEFAULT_BASE_MODEL_FILENAME,
interactive=ALLOW_CHANGING_BASE_MODEL)
change_base_model_button = gr.Button('Change base model')
gr.Markdown(
'''- You can use other base models by specifying the repository name and filename.
The base model must be compatible with Stable Diffusion v1.5.''')
change_base_model_button.click(fn=model.set_base_model,
inputs=[
base_model_repo,
base_model_filename,
],
outputs=current_base_model)
demo.queue(api_open=False).launch()