Spaces:
Runtime error
Runtime error
import gradio as gr | |
from ner import ner | |
demo = gr.Interface(fn=ner, | |
inputs=[gr.Textbox(label="Input text", lines=3)], | |
outputs=[gr.HighlightedText(label='Entities')], | |
title='Named Entity Recognition with `dslim/bert-base-ner` ', | |
description='Find entities using the dslim/bert-base-ner model under the hood', | |
allow_flagging='never', | |
examples=["My name is Logeswaran SR, the creator of this HuggingFace Space. I live in India.","Hello There! I am Andrew Ng, founder of DeepLearning.AI"] | |
) | |
demo.launch() |