WhiteAngels
commited on
Commit
•
f052c5d
1
Parent(s):
4006131
Update app.py
Browse files
app.py
CHANGED
@@ -1,49 +1,63 @@
|
|
1 |
-
from transformers import pipeline, AutoModelForTokenClassification, AutoTokenizer, DebertaV2Tokenizer, DebertaV2Model
|
2 |
-
import sentencepiece
|
3 |
import streamlit as st
|
|
|
4 |
import pandas as pd
|
5 |
import spacy
|
6 |
|
7 |
st.set_page_config(layout="wide")
|
8 |
|
|
|
9 |
example_list = [
|
10 |
"Mustafa Kemal Atatürk 1919 yılında Samsun'a çıktı.",
|
11 |
"""Mustafa Kemal Atatürk, Türk asker, devlet adamı ve Türkiye Cumhuriyeti'nin kurucusudur.
|
12 |
Birinci Dünya Savaşı sırasında Osmanlı ordusunda görev yapan Atatürk, Çanakkale Cephesi'nde miralaylığa, Sina ve Filistin Cephesi'nde ise Yıldırım Orduları komutanlığına atandı. Savaşın sonunda, Osmanlı Imparatorluğu'nun yenilgisini takiben Kurtuluş Savaşı ile simgelenen Türk Ulusal Hareketi'ne öncülük ve önderlik etti. Türk Kurtuluş Savaşı sürecinde Ankara Hükümeti'ni kurdu, Türk Orduları Başkomutanı olarak Sakarya Meydan Muharebesi'ndeki başarısından dolayı 19 Eylül 1921 tarihinde "Gazi" unvanını aldı ve mareşallik rütbesine yükseldi. Askeri ve siyasi eylemleriyle İtilaf Devletleri ve destekçilerine karşı zafer kazandı. Savaşın ardından Cumhuriyet Halk Partisi'ni Halk Fırkası adıyla kurdu ve ilk genel başkanı oldu. 29 Ekim 1923'te Cumhuriyetin ilanı akabinde Cumhurbaşkanı seçildi. 1938'deki ölümüne dek dört dönem bu görevi yürüterek Türkiye'de en uzun süre cumhurbaşkanlığı yapmış kişi oldu."""
|
13 |
]
|
14 |
|
15 |
-
|
|
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
st.sidebar.header("Select NER Model")
|
24 |
model_checkpoint = st.sidebar.radio("", model_list)
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
if model_checkpoint == "akdeniz27/xlm-roberta-base-turkish-ner":
|
30 |
aggregation = "simple"
|
31 |
-
elif model_checkpoint == "xlm-roberta-large-finetuned-conll03-english" or model_checkpoint == "asahi417/tner-xlm-roberta-base-ontonotes5":
|
32 |
-
aggregation = "simple"
|
33 |
-
st.sidebar.write("")
|
34 |
-
st.sidebar.write("The selected NER model is included just to show the zero-shot transfer learning capability of XLM-Roberta pretrained language model.")
|
35 |
else:
|
36 |
aggregation = "first"
|
37 |
-
|
38 |
-
st.
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
@st.cache_resource
|
49 |
def setModel(model_checkpoint, aggregation):
|
@@ -56,7 +70,7 @@ def get_html(html: str):
|
|
56 |
WRAPPER = """<div style="overflow-x: auto; border: 1px solid #e6e9ef; border-radius: 0.25rem; padding: 1rem; margin-bottom: 2.5rem">{}</div>"""
|
57 |
html = html.replace("\n", " ")
|
58 |
return WRAPPER.format(html)
|
59 |
-
|
60 |
@st.cache_resource
|
61 |
def entity_comb(output):
|
62 |
output_comb = []
|
@@ -69,18 +83,17 @@ def entity_comb(output):
|
|
69 |
else:
|
70 |
output_comb.append(entity)
|
71 |
return output_comb
|
72 |
-
|
73 |
Run_Button = st.button("Run", key=None)
|
74 |
|
75 |
if Run_Button and input_text != "":
|
76 |
-
|
77 |
ner_pipeline = setModel(model_checkpoint, aggregation)
|
78 |
output = ner_pipeline(input_text)
|
79 |
|
80 |
output_comb = entity_comb(output)
|
81 |
|
82 |
df = pd.DataFrame.from_dict(output_comb)
|
83 |
-
cols_to_keep = ['word','entity_group','score','start','end']
|
84 |
df_final = df[cols_to_keep]
|
85 |
|
86 |
st.subheader("Recognized Entities")
|
@@ -104,7 +117,6 @@ if Run_Button and input_text != "":
|
|
104 |
else:
|
105 |
if ent["label"] == "PER": ent["label"] = "PERSON"
|
106 |
|
107 |
-
|
108 |
-
html = spacy.displacy.render(spacy_display, style="ent", minify=True, manual=True, options={"ents": spacy_entity_list}) # , "colors": colors})
|
109 |
style = "<style>mark.entity { display: inline-block }</style>"
|
110 |
st.write(f"{style}{get_html(html)}", unsafe_allow_html=True)
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
from transformers import pipeline, AutoModelForSequenceClassification, AutoTokenizer, AutoModelForTokenClassification, AutoModelWithLMHead
|
3 |
import pandas as pd
|
4 |
import spacy
|
5 |
|
6 |
st.set_page_config(layout="wide")
|
7 |
|
8 |
+
# Örnek metin listesi
|
9 |
example_list = [
|
10 |
"Mustafa Kemal Atatürk 1919 yılında Samsun'a çıktı.",
|
11 |
"""Mustafa Kemal Atatürk, Türk asker, devlet adamı ve Türkiye Cumhuriyeti'nin kurucusudur.
|
12 |
Birinci Dünya Savaşı sırasında Osmanlı ordusunda görev yapan Atatürk, Çanakkale Cephesi'nde miralaylığa, Sina ve Filistin Cephesi'nde ise Yıldırım Orduları komutanlığına atandı. Savaşın sonunda, Osmanlı Imparatorluğu'nun yenilgisini takiben Kurtuluş Savaşı ile simgelenen Türk Ulusal Hareketi'ne öncülük ve önderlik etti. Türk Kurtuluş Savaşı sürecinde Ankara Hükümeti'ni kurdu, Türk Orduları Başkomutanı olarak Sakarya Meydan Muharebesi'ndeki başarısından dolayı 19 Eylül 1921 tarihinde "Gazi" unvanını aldı ve mareşallik rütbesine yükseldi. Askeri ve siyasi eylemleriyle İtilaf Devletleri ve destekçilerine karşı zafer kazandı. Savaşın ardından Cumhuriyet Halk Partisi'ni Halk Fırkası adıyla kurdu ve ilk genel başkanı oldu. 29 Ekim 1923'te Cumhuriyetin ilanı akabinde Cumhurbaşkanı seçildi. 1938'deki ölümüne dek dört dönem bu görevi yürüterek Türkiye'de en uzun süre cumhurbaşkanlığı yapmış kişi oldu."""
|
13 |
]
|
14 |
|
15 |
+
# Uygulama başlığı
|
16 |
+
st.title("NLP Toolkit")
|
17 |
|
18 |
+
# Görev seçimi
|
19 |
+
task_list = ['Metin Sınıflandırma', 'Metin Analizi', 'Duygu Analizi', 'Metin Oluşturma']
|
20 |
+
task = st.sidebar.selectbox("Görev Seç", task_list)
|
21 |
+
|
22 |
+
# Model listesi
|
23 |
+
model_list = [
|
24 |
+
'akdeniz27/bert-base-turkish-cased-ner',
|
25 |
+
'akdeniz27/convbert-base-turkish-cased-ner',
|
26 |
+
'akdeniz27/xlm-roberta-base-turkish-ner',
|
27 |
+
'xlm-roberta-large-finetuned-conll03-english',
|
28 |
+
'asahi417/tner-xlm-roberta-base-ontonotes5'
|
29 |
+
]
|
30 |
|
31 |
st.sidebar.header("Select NER Model")
|
32 |
model_checkpoint = st.sidebar.radio("", model_list)
|
33 |
|
34 |
+
# Aggregation Strategy
|
35 |
+
if model_checkpoint in ["akdeniz27/xlm-roberta-base-turkish-ner", "xlm-roberta-large-finetuned-conll03-english", "asahi417/tner-xlm-roberta-base-ontonotes5"]:
|
|
|
|
|
36 |
aggregation = "simple"
|
|
|
|
|
|
|
|
|
37 |
else:
|
38 |
aggregation = "first"
|
39 |
+
|
40 |
+
st.sidebar.write("For details of models: 'https://huggingface.co/WhiteAngelss/")
|
41 |
+
st.sidebar.write("")
|
42 |
+
|
43 |
+
# Metin giriş yöntemi
|
44 |
+
st.subheader("Metin Giriş Yöntemi Seç")
|
45 |
+
input_method = st.radio("", ('Örneklerden Seç', 'Metin Yaz veya Yapıştır', 'Dosya Yükle'))
|
46 |
+
|
47 |
+
if input_method == 'Örneklerden Seç':
|
48 |
+
selected_text = st.selectbox('Metin Seç', example_list, index=0, key=1)
|
49 |
+
st.subheader("Seçilen Metin")
|
50 |
+
input_text = st.text_area("Metin", selected_text, height=128, max_chars=None, key=2)
|
51 |
+
elif input_method == "Metin Yaz veya Yapıştır":
|
52 |
+
st.subheader("Metin")
|
53 |
+
input_text = st.text_area('Metin Yaz veya Yapıştır', value="", height=128, max_chars=None, key=2)
|
54 |
+
elif input_method == "Dosya Yükle":
|
55 |
+
st.subheader("Metin")
|
56 |
+
uploaded_file = st.file_uploader("Dosya Seç", type="txt")
|
57 |
+
if uploaded_file is not None:
|
58 |
+
input_text = str(uploaded_file.read(), "utf-8")
|
59 |
+
else:
|
60 |
+
input_text = ""
|
61 |
|
62 |
@st.cache_resource
|
63 |
def setModel(model_checkpoint, aggregation):
|
|
|
70 |
WRAPPER = """<div style="overflow-x: auto; border: 1px solid #e6e9ef; border-radius: 0.25rem; padding: 1rem; margin-bottom: 2.5rem">{}</div>"""
|
71 |
html = html.replace("\n", " ")
|
72 |
return WRAPPER.format(html)
|
73 |
+
|
74 |
@st.cache_resource
|
75 |
def entity_comb(output):
|
76 |
output_comb = []
|
|
|
83 |
else:
|
84 |
output_comb.append(entity)
|
85 |
return output_comb
|
86 |
+
|
87 |
Run_Button = st.button("Run", key=None)
|
88 |
|
89 |
if Run_Button and input_text != "":
|
|
|
90 |
ner_pipeline = setModel(model_checkpoint, aggregation)
|
91 |
output = ner_pipeline(input_text)
|
92 |
|
93 |
output_comb = entity_comb(output)
|
94 |
|
95 |
df = pd.DataFrame.from_dict(output_comb)
|
96 |
+
cols_to_keep = ['word', 'entity_group', 'score', 'start', 'end']
|
97 |
df_final = df[cols_to_keep]
|
98 |
|
99 |
st.subheader("Recognized Entities")
|
|
|
117 |
else:
|
118 |
if ent["label"] == "PER": ent["label"] = "PERSON"
|
119 |
|
120 |
+
html = spacy.displacy.render(spacy_display, style="ent", minify=True, manual=True, options={"ents": spacy_entity_list})
|
|
|
121 |
style = "<style>mark.entity { display: inline-block }</style>"
|
122 |
st.write(f"{style}{get_html(html)}", unsafe_allow_html=True)
|