FahadAlam commited on
Commit
a7e87da
·
1 Parent(s): 0b6bf0f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -12
app.py CHANGED
@@ -10,31 +10,34 @@ nlp = spacy.load("en_core_web_sm")
10
  def text_analysis(text):
11
  doc = nlp(text)
12
  dependency_parsing = displacy.render(doc, style="dep", page=True)
13
-
14
  visual1 = (
15
  "<div style='max-width:100%; overflow:auto'>"
16
  + dependency_parsing
17
  + "</div>"
18
  )
19
-
20
  rows = []
21
  for token in doc:
22
  rows.append((token.text, token.lemma_, token.pos_, token.tag_, token.dep_,
23
  token.shape_, token.is_alpha, token.is_stop))
24
-
25
  table = pd.DataFrame(rows, columns = ["TEXT", "LEMMA","POS","TAG","DEP","SHAPE","ALPHA","STOP"])
26
-
27
  return table, visual1
28
 
29
-
30
- demo = gr.Interface(
31
- text_analysis,
32
- inputs = gr.Textbox(placeholder="Enter sentence here..."),
33
- outputs = [ gr.Dataframe(), "html"],
34
- examples=[
 
 
 
 
 
 
 
35
  ["Data Science Dojo is the leading platform providing training in data science, data analytics, and machine learning."],
36
  ["It's the best time to execute the plan."],
37
- ],
38
- )
39
 
40
  demo.launch()
 
10
  def text_analysis(text):
11
  doc = nlp(text)
12
  dependency_parsing = displacy.render(doc, style="dep", page=True)
 
13
  visual1 = (
14
  "<div style='max-width:100%; overflow:auto'>"
15
  + dependency_parsing
16
  + "</div>"
17
  )
 
18
  rows = []
19
  for token in doc:
20
  rows.append((token.text, token.lemma_, token.pos_, token.tag_, token.dep_,
21
  token.shape_, token.is_alpha, token.is_stop))
 
22
  table = pd.DataFrame(rows, columns = ["TEXT", "LEMMA","POS","TAG","DEP","SHAPE","ALPHA","STOP"])
 
23
  return table, visual1
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():
36
+ gr.Examples(
37
+ examples=[
38
  ["Data Science Dojo is the leading platform providing training in data science, data analytics, and machine learning."],
39
  ["It's the best time to execute the plan."],
40
+ ], fn=text_analysis, inputs=inp, outputs=[table, visual1], cache_examples=True)
41
+ btn.click(fn=text_analysis, inputs=inp, outputs=[table, visual1])
42
 
43
  demo.launch()