RajkNakka commited on
Commit
27f05ec
·
1 Parent(s): 4bdd29f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ description = "Named Entity Recognition (NER) with fine-tuned BERT"
4
+ title = "Checkout you own sentence"
5
+ examples = [["Colorado is a great place for outdoor adventures, friendly people and clean air"]]
6
+
7
+ interface = gr.Interface.load("huggingface/RajkNakka/bert-finetuned-ner",
8
+ description=description,
9
+ title=title,
10
+ examples=examples
11
+ )
12
+
13
+ interface.launch()