NER-fine-tuning / app.py
RajkNakka's picture
Create app.py
27f05ec
raw
history blame contribute delete
411 Bytes
import gradio as gr
description = "Named Entity Recognition (NER) with fine-tuned BERT"
title = "Checkout you own sentence"
examples = [["Colorado is a great place for outdoor adventures, friendly people and clean air"]]
interface = gr.Interface.load("huggingface/RajkNakka/bert-finetuned-ner",
description=description,
title=title,
examples=examples
)
interface.launch()