Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -24,12 +24,13 @@ def text_analysis(text):
|
|
24 |
|
25 |
with gr.Blocks() as demo:
|
26 |
with gr.Row():
|
27 |
-
inp = gr.Textbox(placeholder="Enter text to analyze...")
|
28 |
btn = gr.Button("Analyze Text")
|
29 |
-
gr.Markdown("""
|
|
|
30 |
with gr.Row():
|
31 |
table = gr.Dataframe()
|
32 |
-
gr.Markdown("""
|
33 |
with gr.Row():
|
34 |
visual1 = gr.HTML()
|
35 |
with gr.Row():
|
|
|
24 |
|
25 |
with gr.Blocks() as demo:
|
26 |
with gr.Row():
|
27 |
+
inp = gr.Textbox(placeholder="Enter text to analyze...", label="Input")
|
28 |
btn = gr.Button("Analyze Text")
|
29 |
+
gr.Markdown("""
|
30 |
+
# Analysis""")
|
31 |
with gr.Row():
|
32 |
table = gr.Dataframe()
|
33 |
+
gr.Markdown("""## Dependency Parsing""")
|
34 |
with gr.Row():
|
35 |
visual1 = gr.HTML()
|
36 |
with gr.Row():
|