Spaces:
Runtime error
Runtime error
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() |