nanom commited on
Commit
2310bfe
·
1 Parent(s): a7c00aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -48,13 +48,13 @@ def syntacticTree(expr):
48
  demo = gr.Blocks(css=".container { max-width: 900px; margin: auto;}", title="Syntactic tree generator")
49
 
50
  with demo:
51
- gr.Markdown("""<center> <h1>Syntactic tree generator</h1> </center>""")
52
  with gr.Row():
53
  with gr.Column():
54
  gr.Image(value="https://img.unocero.com/2019/11/facebook-app-para-hacer-memes-1-1024x576.jpg",label="", type="URL")
55
  with gr.Column():
56
  input_expr = gr.Textbox(label="Input", placeholder="Enter an expression here")
57
- out_flat_tree = gr.Text(label="Flat depth tree", value="")
58
 
59
  out_image_tree = gr.HTML(label="")
60
 
 
48
  demo = gr.Blocks(css=".container { max-width: 900px; margin: auto;}", title="Syntactic tree generator")
49
 
50
  with demo:
51
+ gr.Markdown("""<center> <h2>🌳 Syntactic Tree Generator 🌳</h2> </center>""")
52
  with gr.Row():
53
  with gr.Column():
54
  gr.Image(value="https://img.unocero.com/2019/11/facebook-app-para-hacer-memes-1-1024x576.jpg",label="", type="URL")
55
  with gr.Column():
56
  input_expr = gr.Textbox(label="Input", placeholder="Enter an expression here")
57
+ out_flat_tree = gr.Text(label="Flat tree", value="")
58
 
59
  out_image_tree = gr.HTML(label="")
60