Spaces:
Runtime error
Runtime error
File size: 411 Bytes
27f05ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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() |