SemanticTypography commited on
Commit
29c2411
·
verified ·
1 Parent(s): cc85c98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
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 f:
243
- svg_content = f.read()
 
 
 
244
 
245
- yield gr.update(value=f"<div>{svg_content}</div>",visible=True),gr.update(visible=False),gr.update(value=image,visible=True)
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: