harshithakr commited on
Commit
487f6ed
·
1 Parent(s): 9217965

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -30,12 +30,13 @@ with gradio.Blocks(theme = 'gradio/monochrome', title = 'Keyword clustering Demo
30
  output_sec = gradio.outputs.Textbox(label="mapped sector and score")
31
  output_other = gradio.outputs.Textbox(label="mapped other industry and score")
32
  output_keybert = gradio.outputs.Textbox(label="identified keywords")
 
33
 
34
 
35
 
36
  button.click(get_output,
37
  [event_info],
38
- outputs=[output_sec, output_other, output_keybert])
39
 
40
  #keyword_cluster_demo.queue().launch(share=True,debug =True, show_error =True)
41
  keyword_cluster_demo.queue().launch()
 
30
  output_sec = gradio.outputs.Textbox(label="mapped sector and score")
31
  output_other = gradio.outputs.Textbox(label="mapped other industry and score")
32
  output_keybert = gradio.outputs.Textbox(label="identified keywords")
33
+ output_tags_identified = gradio.outputs.Textbox(label="identified Tags")
34
 
35
 
36
 
37
  button.click(get_output,
38
  [event_info],
39
+ outputs=[output_sec, output_other, output_keybert, output_tags_identified])
40
 
41
  #keyword_cluster_demo.queue().launch(share=True,debug =True, show_error =True)
42
  keyword_cluster_demo.queue().launch()