File size: 635 Bytes
f828f91 530fd26 99037aa f828f91 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
from transformers import pipeline
import gradio as gr
ner_pipeline = pipeline("ner", model="nickprock/bert-italian-finetuned-ner", aggregation_strategy=None)
examples = [
["Domani andrò allo stadio con Giovanna a vedere la Fiorentina"],
["La sede storica della Olivetti è ad Ivrea"],
["Ieri sera c'è stato Harry Potter in TV"]
]
def ner(text):
output = ner_pipeline(text)
return {"text": text, "entities": output}
demo = gr.Interface(ner,
gr.Textbox(placeholder="Inserisci una frase qui..."),
gr.HighlightedText(),
examples=examples)
demo.launch()
|