debisoft commited on
Commit
4a74cb3
·
1 Parent(s): dcac4d1
Files changed (1) hide show
  1. app.py +1 -8
app.py CHANGED
@@ -6,12 +6,5 @@ def greet(name):
6
  #iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  #iface.launch()
8
 
9
- iface = gr.Interface(fn=greet,
10
- inputs=[gr.Textbox(label="Text to find entities", lines=2)],
11
- outputs=[gr.HighlightedText(label="Text with entities")],
12
- title="NER with dslim/bert-base-NER",
13
- description="Find entities using the `dslim/bert-base-NER` model under the hood!",
14
- allow_flagging="never",
15
- #Here we introduce a new tag, examples, easy to use examples for your application
16
- examples=["My name is Andrew and I live in California", "My name is Poli and work at HuggingFace"])
17
  iface.launch()
 
6
  #iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  #iface.launch()
8
 
9
+ iface = gr.Interface(fn=greet, inputs=[gr.Textbox(label="Text to find entities", lines=2)], outputs=[gr.HighlightedText(label="Text with entities")], title="NER with dslim/bert-base-NER", description="Find entities using the `dslim/bert-base-NER` model under the hood!", allow_flagging="never", examples=["My name is Andrew and I live in California", "My name is Poli and work at HuggingFace"])
 
 
 
 
 
 
 
10
  iface.launch()