Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -46,7 +46,7 @@ def tryon(person_img, garment_img, seed, randomize_seed):
|
|
46 |
post_end_time = time.time()
|
47 |
print(f"post time used: {post_end_time-post_start_time}")
|
48 |
|
49 |
-
get_start_time =time.time()
|
50 |
time.sleep(9)
|
51 |
Max_Retry = 10
|
52 |
result_img = None
|
@@ -69,7 +69,7 @@ def tryon(person_img, garment_img, seed, randomize_seed):
|
|
69 |
raise gr.Error("Too many users, please try again later")
|
70 |
else:
|
71 |
print(response.text)
|
72 |
-
info = "URL error,
|
73 |
except requests.exceptions.ReadTimeout:
|
74 |
print("timeout")
|
75 |
info = "Too many users, please try again later"
|
@@ -117,17 +117,17 @@ def start_tryon(person_img, garment_img, seed, randomize_seed):
|
|
117 |
result_img = cv2.cvtColor(result_img, cv2.COLOR_RGB2BGR)
|
118 |
info = "Success"
|
119 |
else:
|
120 |
-
info = "Try again
|
121 |
else:
|
122 |
print(response.text)
|
123 |
-
info = "URL error,
|
124 |
except requests.exceptions.ReadTimeout:
|
125 |
print("timeout")
|
126 |
info = "Too many users, please try again later"
|
127 |
raise gr.Error("Too many users, please try again later")
|
128 |
except Exception as err:
|
129 |
-
print(f"
|
130 |
-
info = "Error,
|
131 |
end_time = time.time()
|
132 |
print(f"time used: {end_time-start_time}")
|
133 |
|
@@ -135,15 +135,7 @@ def start_tryon(person_img, garment_img, seed, randomize_seed):
|
|
135 |
|
136 |
MAX_SEED = 999999
|
137 |
|
138 |
-
|
139 |
-
|
140 |
-
garm_list = os.listdir(os.path.join(example_path,"cloth"))
|
141 |
-
garm_list_path = [os.path.join(example_path,"cloth",garm) for garm in garm_list]
|
142 |
-
|
143 |
-
human_list = os.listdir(os.path.join(example_path,"human"))
|
144 |
-
human_list_path = [os.path.join(example_path,"human",human) for human in human_list]
|
145 |
-
|
146 |
-
css="""
|
147 |
#col-left {
|
148 |
margin: 0 auto;
|
149 |
max-width: 430px;
|
@@ -165,18 +157,12 @@ css="""
|
|
165 |
}
|
166 |
"""
|
167 |
|
168 |
-
def load_description(fp):
|
169 |
-
with open(fp, 'r', encoding='utf-8') as f:
|
170 |
-
content = f.read()
|
171 |
-
return content
|
172 |
-
|
173 |
def change_imgs(image1, image2):
|
174 |
return image1, image2
|
175 |
|
176 |
with gr.Blocks(css=css) as Tryon:
|
177 |
-
gr.HTML(load_description("assets/title.md"))
|
178 |
with gr.Row():
|
179 |
-
with gr.Column(elem_id
|
180 |
gr.HTML("""
|
181 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
182 |
<div>
|
@@ -184,7 +170,7 @@ with gr.Blocks(css=css) as Tryon:
|
|
184 |
</div>
|
185 |
</div>
|
186 |
""")
|
187 |
-
with gr.Column(elem_id
|
188 |
gr.HTML("""
|
189 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
190 |
<div>
|
@@ -192,7 +178,7 @@ with gr.Blocks(css=css) as Tryon:
|
|
192 |
</div>
|
193 |
</div>
|
194 |
""")
|
195 |
-
with gr.Column(elem_id
|
196 |
gr.HTML("""
|
197 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
198 |
<div>
|
@@ -201,22 +187,11 @@ with gr.Blocks(css=css) as Tryon:
|
|
201 |
</div>
|
202 |
""")
|
203 |
with gr.Row():
|
204 |
-
with gr.Column(elem_id
|
205 |
imgs = gr.Image(label="Person image", sources='upload', type="numpy")
|
206 |
-
|
207 |
-
example = gr.Examples(
|
208 |
-
inputs=imgs,
|
209 |
-
examples_per_page=12,
|
210 |
-
examples=human_list_path
|
211 |
-
)
|
212 |
-
with gr.Column(elem_id = "col-mid"):
|
213 |
garm_img = gr.Image(label="Garment image", sources='upload', type="numpy")
|
214 |
-
|
215 |
-
inputs=garm_img,
|
216 |
-
examples_per_page=12,
|
217 |
-
examples=garm_list_path
|
218 |
-
)
|
219 |
-
with gr.Column(elem_id = "col-right"):
|
220 |
image_out = gr.Image(label="Result", show_share_button=False)
|
221 |
with gr.Row():
|
222 |
seed = gr.Slider(
|
@@ -230,14 +205,11 @@ with gr.Blocks(css=css) as Tryon:
|
|
230 |
with gr.Row():
|
231 |
seed_used = gr.Number(label="Seed used")
|
232 |
result_info = gr.Text(label="Response")
|
233 |
-
# try_button = gr.Button(value="Run", elem_id="button")
|
234 |
test_button = gr.Button(value="Run", elem_id="button")
|
235 |
|
|
|
236 |
|
237 |
-
|
238 |
-
test_button.click(fn=tryon, inputs=[imgs, garm_img, seed, randomize_seed], outputs=[image_out, seed_used, result_info], api_name='tryon',concurrency_limit=10)
|
239 |
-
|
240 |
-
with gr.Column(elem_id = "col-showcase"):
|
241 |
gr.HTML("""
|
242 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
243 |
<div> </div>
|
@@ -248,6 +220,4 @@ with gr.Blocks(css=css) as Tryon:
|
|
248 |
</div>
|
249 |
""")
|
250 |
|
251 |
-
|
252 |
-
# print("ip address", ip)
|
253 |
-
Tryon.queue(max_size = 20).launch(max_threads = 5)
|
|
|
46 |
post_end_time = time.time()
|
47 |
print(f"post time used: {post_end_time-post_start_time}")
|
48 |
|
49 |
+
get_start_time = time.time()
|
50 |
time.sleep(9)
|
51 |
Max_Retry = 10
|
52 |
result_img = None
|
|
|
69 |
raise gr.Error("Too many users, please try again later")
|
70 |
else:
|
71 |
print(response.text)
|
72 |
+
info = "URL error, please contact the admin"
|
73 |
except requests.exceptions.ReadTimeout:
|
74 |
print("timeout")
|
75 |
info = "Too many users, please try again later"
|
|
|
117 |
result_img = cv2.cvtColor(result_img, cv2.COLOR_RGB2BGR)
|
118 |
info = "Success"
|
119 |
else:
|
120 |
+
info = "Try again later"
|
121 |
else:
|
122 |
print(response.text)
|
123 |
+
info = "URL error, please contact the admin"
|
124 |
except requests.exceptions.ReadTimeout:
|
125 |
print("timeout")
|
126 |
info = "Too many users, please try again later"
|
127 |
raise gr.Error("Too many users, please try again later")
|
128 |
except Exception as err:
|
129 |
+
print(f"Error: {err}")
|
130 |
+
info = "Error, please contact the admin"
|
131 |
end_time = time.time()
|
132 |
print(f"time used: {end_time-start_time}")
|
133 |
|
|
|
135 |
|
136 |
MAX_SEED = 999999
|
137 |
|
138 |
+
css = """
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
#col-left {
|
140 |
margin: 0 auto;
|
141 |
max-width: 430px;
|
|
|
157 |
}
|
158 |
"""
|
159 |
|
|
|
|
|
|
|
|
|
|
|
160 |
def change_imgs(image1, image2):
|
161 |
return image1, image2
|
162 |
|
163 |
with gr.Blocks(css=css) as Tryon:
|
|
|
164 |
with gr.Row():
|
165 |
+
with gr.Column(elem_id="col-left"):
|
166 |
gr.HTML("""
|
167 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
168 |
<div>
|
|
|
170 |
</div>
|
171 |
</div>
|
172 |
""")
|
173 |
+
with gr.Column(elem_id="col-mid"):
|
174 |
gr.HTML("""
|
175 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
176 |
<div>
|
|
|
178 |
</div>
|
179 |
</div>
|
180 |
""")
|
181 |
+
with gr.Column(elem_id="col-right"):
|
182 |
gr.HTML("""
|
183 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
184 |
<div>
|
|
|
187 |
</div>
|
188 |
""")
|
189 |
with gr.Row():
|
190 |
+
with gr.Column(elem_id="col-left"):
|
191 |
imgs = gr.Image(label="Person image", sources='upload', type="numpy")
|
192 |
+
with gr.Column(elem_id="col-mid"):
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
garm_img = gr.Image(label="Garment image", sources='upload', type="numpy")
|
194 |
+
with gr.Column(elem_id="col-right"):
|
|
|
|
|
|
|
|
|
|
|
195 |
image_out = gr.Image(label="Result", show_share_button=False)
|
196 |
with gr.Row():
|
197 |
seed = gr.Slider(
|
|
|
205 |
with gr.Row():
|
206 |
seed_used = gr.Number(label="Seed used")
|
207 |
result_info = gr.Text(label="Response")
|
|
|
208 |
test_button = gr.Button(value="Run", elem_id="button")
|
209 |
|
210 |
+
test_button.click(fn=tryon, inputs=[imgs, garm_img, seed, randomize_seed], outputs=[image_out, seed_used, result_info], api_name='tryon', concurrency_limit=10)
|
211 |
|
212 |
+
with gr.Column(elem_id="col-showcase"):
|
|
|
|
|
|
|
213 |
gr.HTML("""
|
214 |
<div style="display: flex; justify-content: center; align-items: center; text-align: center; font-size: 20px;">
|
215 |
<div> </div>
|
|
|
220 |
</div>
|
221 |
""")
|
222 |
|
223 |
+
Tryon.queue(max_size=20).launch(max_threads=5)
|
|
|
|