FahadAlam commited on
Commit
c149088
1 Parent(s): a7e87da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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("""### Analysis""")
 
30
  with gr.Row():
31
  table = gr.Dataframe()
32
- gr.Markdown("""### Dependency Parsing""")
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():