Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -237,15 +237,15 @@ def run_main_app(semantic_concept, word, letter, font_name, num_steps, example=0
|
|
237 |
combine_word(cfg.word, cfg.optimized_letter, cfg.font, cfg.experiment_dir)
|
238 |
|
239 |
image = os.path.join(cfg.experiment_dir,f"{cfg.font}_{cfg.word}_{cfg.optimized_letter}.svg")
|
240 |
-
|
241 |
|
242 |
-
with open(filename_init, "r") as f0:
|
243 |
-
|
244 |
|
245 |
-
with open(image, "r") as f1:
|
246 |
-
|
247 |
|
248 |
-
yield gr.update(value=f"<div>{svg_content_init}</div>",label="Initial Word",visible=True),gr.update(visible=False),gr.update(value=f"<div>{svg_content_final}</div>",label="Final Result",visible=True)
|
249 |
|
250 |
|
251 |
with gr.Blocks() as demo:
|
@@ -297,9 +297,9 @@ with gr.Blocks() as demo:
|
|
297 |
run = gr.Button('Generate')
|
298 |
|
299 |
with gr.Column():
|
300 |
-
result0 = gr.HTML("""<style>{width: 333px; height: 333px;}</style>""",label="Initial Word") #gr.Image(type="filepath", label="Initial Word",height=333)
|
301 |
-
result1 = gr.Image(type="filepath", label="Optimization Process",height=100)
|
302 |
-
result2 = gr.HTML(label="Final Result") #gr.Image(type="filepath", label="Final Result",visible=False,height=333)
|
303 |
|
304 |
|
305 |
with gr.Row():
|
@@ -343,9 +343,9 @@ with gr.Blocks() as demo:
|
|
343 |
num_steps
|
344 |
],
|
345 |
outputs=[
|
346 |
-
result0
|
347 |
-
result1,
|
348 |
-
result2
|
349 |
],
|
350 |
fn=run_main_ex,
|
351 |
cache_examples=True)
|
@@ -361,9 +361,9 @@ with gr.Blocks() as demo:
|
|
361 |
]
|
362 |
|
363 |
outputs = [
|
364 |
-
result0
|
365 |
-
result1,
|
366 |
-
result2
|
367 |
]
|
368 |
|
369 |
run.click(fn=run_main_app, inputs=inputs, outputs=outputs, concurrency_limit=2)
|
|
|
237 |
combine_word(cfg.word, cfg.optimized_letter, cfg.font, cfg.experiment_dir)
|
238 |
|
239 |
image = os.path.join(cfg.experiment_dir,f"{cfg.font}_{cfg.word}_{cfg.optimized_letter}.svg")
|
240 |
+
yield gr.update(value=filename_init,visible=True),gr.update(visible=False),gr.update(value=image,visible=True)
|
241 |
|
242 |
+
# with open(filename_init, "r") as f0:
|
243 |
+
# svg_content_init = f0.read()
|
244 |
|
245 |
+
# with open(image, "r") as f1:
|
246 |
+
# svg_content_final = f1.read()
|
247 |
|
248 |
+
# yield gr.update(value=f"<div>{svg_content_init}</div>",label="Initial Word",visible=True),gr.update(visible=False),gr.update(value=f"<div>{svg_content_final}</div>",label="Final Result",visible=True)
|
249 |
|
250 |
|
251 |
with gr.Blocks() as demo:
|
|
|
297 |
run = gr.Button('Generate')
|
298 |
|
299 |
with gr.Column():
|
300 |
+
result0 = gr.Gallery([(None,"Initial Word"),(None,"Optimization Process"),(None,"Final Result")], label="Output",columns=1)#gr.HTML("""<style>{width: 333px; height: 333px;}</style>""",label="Initial Word") #gr.Image(type="filepath", label="Initial Word",height=333)
|
301 |
+
# result1 = gr.Image(type="filepath", label="Optimization Process",height=100)
|
302 |
+
# result2 = gr.HTML(label="Final Result") #gr.Image(type="filepath", label="Final Result",visible=False,height=333)
|
303 |
|
304 |
|
305 |
with gr.Row():
|
|
|
343 |
num_steps
|
344 |
],
|
345 |
outputs=[
|
346 |
+
result0#,
|
347 |
+
# result1,
|
348 |
+
# result2
|
349 |
],
|
350 |
fn=run_main_ex,
|
351 |
cache_examples=True)
|
|
|
361 |
]
|
362 |
|
363 |
outputs = [
|
364 |
+
result0#,
|
365 |
+
# result1,
|
366 |
+
# result2
|
367 |
]
|
368 |
|
369 |
run.click(fn=run_main_app, inputs=inputs, outputs=outputs, concurrency_limit=2)
|