Commit
·
6b44c01
1
Parent(s):
bf20079
Update app.py
Browse files
app.py
CHANGED
@@ -17,10 +17,13 @@ def ner(text):
|
|
17 |
)
|
18 |
return html
|
19 |
|
|
|
|
|
20 |
demo = gr.Interface(
|
21 |
ner,
|
22 |
gr.Textbox(placeholder="Enter sentence here..."),
|
23 |
outputs="html",
|
|
|
24 |
examples=["In February 2006, Musk led Tesla's Series B venture capital funding round of $13 million, which added Valor Equity Partners to the funding team.[22][17] \
|
25 |
Musk co-led the third, $40 million round in May 2006 which saw investment from prominent entrepreneurs including Google co-founders Sergey Brin and Larry Page, \
|
26 |
and former eBay President Jeff Skoll.[23] A fourth round worth $45 million in May 2007 brought the total private financing investment to over $105 million.[23] \
|
|
|
17 |
)
|
18 |
return html
|
19 |
|
20 |
+
title = "Named Entity Recognition"
|
21 |
+
|
22 |
demo = gr.Interface(
|
23 |
ner,
|
24 |
gr.Textbox(placeholder="Enter sentence here..."),
|
25 |
outputs="html",
|
26 |
+
title=title,
|
27 |
examples=["In February 2006, Musk led Tesla's Series B venture capital funding round of $13 million, which added Valor Equity Partners to the funding team.[22][17] \
|
28 |
Musk co-led the third, $40 million round in May 2006 which saw investment from prominent entrepreneurs including Google co-founders Sergey Brin and Larry Page, \
|
29 |
and former eBay President Jeff Skoll.[23] A fourth round worth $45 million in May 2007 brought the total private financing investment to over $105 million.[23] \
|