Spaces:
Runtime error
Runtime error
Create app.py
Browse files
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()
|