Spaces:
Running
Running
Update app.py
Browse files
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> <
|
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
|
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 |
|