raul-padua commited on
Commit
8124738
1 Parent(s): 0d8634d

Added more examples

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -31,5 +31,9 @@ demo = gr.Interface(fn=ner,
31
  description="Find entities using the `BERT-base` model under the hood!",
32
  allow_flagging="never",
33
  #Here we introduce a new tag, examples, easy to use examples for your application
34
- examples=["My name is Raul and I live in Niterói, Rio de Janeiro, Brazil"])
 
 
 
 
35
  demo.launch()
 
31
  description="Find entities using the `BERT-base` model under the hood!",
32
  allow_flagging="never",
33
  #Here we introduce a new tag, examples, easy to use examples for your application
34
+ examples=["My name is Raul and I live in Niterói, Rio de Janeiro, Brazil",
35
+ "Lionel Messi is the greatest footballer of the new century",
36
+ "Toronto is hockey capital of the world",
37
+ "S&P 500 has gained 400 points in last trailing 7 days",
38
+ "Paris is one of most visited cities in the world every year."])
39
  demo.launch()