Rooni commited on
Commit
65967d0
·
1 Parent(s): cfe183b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +75 -0
app.py CHANGED
@@ -95,3 +95,78 @@ def mirror(image_output, scale_by, method, gfpgan, codeformer):
95
  print(r.text)
96
  ph = f"{url_up_f}" + str(r.json()['data'][0][0]['name'])
97
  return ph
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  print(r.text)
96
  ph = f"{url_up_f}" + str(r.json()['data'][0][0]['name'])
97
  return ph
98
+
99
+ css = """
100
+ #generate {
101
+ width: 100%;
102
+ background: #e253dd !important;
103
+ border: none;
104
+ border-radius: 50px;
105
+ outline: none !important;
106
+ color: white;
107
+ }
108
+ #generate:hover {
109
+ background: #de6bda !important;
110
+ outline: none !important;
111
+ color: #fff;
112
+ }
113
+ #image_output {
114
+ display: flex;
115
+ justify-content: center;
116
+ }
117
+ footer {visibility: hidden !important;}
118
+
119
+ #image_output {
120
+ height: 100% !important;
121
+ }
122
+ """
123
+
124
+ with gr.Blocks(css=css) as demo:
125
+
126
+ with gr.Tab("Базовые настройки"):
127
+ with gr.Row():
128
+ prompt = gr.Textbox(placeholder="Введите описание изображения...", show_label=True, label='Описание изображения:', lines=3)
129
+ with gr.Row():
130
+ task = gr.Radio(interactive=True, value="Deliberate 3", show_label=True, label="Модель нейросети:",
131
+ choices=["AbsoluteReality 1.8.1", "Elldreth's Vivid Mix", "Anything V5", "Openjourney V4", "Analog Diffusion",
132
+ "Lyriel 1.6", "Realistic Vision 5.0", "Dreamshaper 8", "epiCRealism v5",
133
+ "CyberRealistic 3.3", "ToonYou 6", "Deliberate 3"])
134
+ with gr.Tab("Расширенные настройки"):
135
+ with gr.Row():
136
+ negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=True, label='Negative Prompt:', lines=3, value="[deformed | disfigured], poorly drawn, [bad : wrong] anatomy, [extra | missing | floating | disconnected] limb, (mutated hands and fingers), blurry")
137
+ with gr.Row():
138
+ sampler = gr.Dropdown(value="DPM++ SDE Karras", show_label=True, label="Sampling Method:", choices=[
139
+ "Euler", "Euler a", "Heun", "DPM++ 2M Karras", "DPM++ SDE Karras", "DDIM"])
140
+ with gr.Row():
141
+ steps = gr.Slider(show_label=True, label="Sampling Steps:", minimum=1, maximum=30, value=25, step=1)
142
+ with gr.Row():
143
+ cfg_scale = gr.Slider(show_label=True, label="CFG Scale:", minimum=1, maximum=20, value=7, step=1)
144
+ with gr.Row():
145
+ seed = gr.Number(show_label=True, label="Seed:", minimum=-1, maximum=1000000, value=-1, step=1)
146
+
147
+ with gr.Tab("Настройки апскейлинга"):
148
+ with gr.Column():
149
+ with gr.Row():
150
+ scale_by = gr.Number(show_label=True, label="Во сколько раз увеличить:", minimum=1, maximum=4, value=2, step=1)
151
+ with gr.Row():
152
+ method = gr.Dropdown(show_label=True, value="ESRGAN_4x", label="Алгоритм увеличения", choices=["ScuNET GAN", "SwinIR 4x", "ESRGAN_4x", "R-ESRGAN 4x+", "R-ESRGAN 4x+ Anime6B"])
153
+ with gr.Column():
154
+ with gr.Row():
155
+ gfpgan = gr.Slider(show_label=True, label="Эффект GFPGAN (для улучшения лица)", minimum=0, maximum=1, value=0, step=0.1)
156
+ with gr.Row():
157
+ codeformer = gr.Slider(show_label=True, label="Эффект CodeFormer (для улучшения лица)", minimum=0, maximum=1, value=0, step=0.1)
158
+
159
+
160
+ with gr.Column():
161
+ text_button = gr.Button("Сгенерировать изображение", variant='primary', elem_id="generate")
162
+ with gr.Column():
163
+ image_output = gr.Image(show_label=True, show_download_button=True, interactive=False, label='Результат:', elem_id='image_output', type='filepath')
164
+ text_button.click(flip_text, inputs=[prompt, negative_prompt, task, steps, sampler, cfg_scale, seed], outputs=image_output)
165
+
166
+ img2img_b = gr.Button("Увеличить изображение", variant='secondary')
167
+ image_i2i = gr.Image(show_label=True, label='Увеличенное изображение:')
168
+ img2img_b.click(mirror, inputs=[image_output, scale_by, method, gfpgan, codeformer], outputs=image_i2i)
169
+
170
+
171
+ demo.queue(concurrency_count=24)
172
+ demo.launch()