Spaces:
Sleeping
Sleeping
File size: 972 Bytes
a0d72bc |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# -*- coding: utf-8 -*-
"""GradioIleNER.ipynb
Automatically generated by Colab.
Original file is located at
https://colab.research.google.com/drive/1NfmayavArZT9V1I1LgMeAkM7QLmKAhXe
"""
# !pip install -q transformers
from transformers import pipeline
ner_pipeline = pipeline("ner", model="Tirendaz/roberta-base-NER")
text = "I am Tim and I work at Google"
ner_pipeline(text)
text_tr = "Benim adım Neşet ve Trendyol'da çalışıyorum"
ner_pipeline(text_tr)
ner_pipeline(text_tr, aggregation_strategy="simple")
def ner(text):
output = ner_pipeline(text, aggregation_strategy="simple")
return {"text": text, "entities": output}
# !pip install -q gradio
import gradio as gr
examples = ["My name is Tim and I live in California", "Ich arbeite bei Google in Berlin", "Neşet, Ankara'lı mı?"]
demo = gr.Interface(
ner,
gr.Textbox(placeholder="Enter text here..."),
gr.HighlightedText(),
examples=examples,
)
demo.launch(share= True)
|