Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -239,10 +239,13 @@ def run_main_app(semantic_concept, word, letter, font_name, num_steps, example=0
|
|
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
|
243 |
-
|
|
|
|
|
|
|
244 |
|
245 |
-
yield gr.update(value=f"<div>{
|
246 |
|
247 |
|
248 |
with gr.Blocks() as demo:
|
|
|
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",height=333,visible=True),gr.update(visible=False),gr.update(value=f"<div>{svg_content_final}</div>",label="Final Result",height=333,visible=True)
|
249 |
|
250 |
|
251 |
with gr.Blocks() as demo:
|