Update app.py
Browse files
app.py
CHANGED
@@ -31,16 +31,16 @@ def load_model(show_spinner=True):
|
|
31 |
return yorum_model, tokenizer
|
32 |
|
33 |
st.set_page_config(layout='wide', initial_sidebar_state='expanded')
|
34 |
-
|
35 |
-
st.title("TC32 Multi-Class Text Classification")
|
36 |
-
st.subheader('Model Loss and Accuracy')
|
37 |
st.markdown("<br>", unsafe_allow_html=True)
|
38 |
st.area_chart(chart_data, height=320)
|
39 |
yorum_model, tokenizer = load_model()
|
40 |
|
41 |
-
|
42 |
-
st.title("Sınıfı bulmak için bir şikayet girin. (Ctrl+Enter)")
|
43 |
-
st.subheader("Enter complaint (in Turkish) to find the class.")
|
44 |
#st.subheader("Şikayet")
|
45 |
text = st.text_area("", "Bebeğim haftada bir kutu mama bitiriyor. Geçen hafta 135 tl'ye aldığım mama bugün 180 tl olmuş. Ben de artık aptamil almayacağım. Tüketici haklarına şikayet etmemiz gerekiyor. Yazıklar olsun.", height=285)
|
46 |
|
@@ -64,7 +64,6 @@ def make_prediction(model, processed_data, classes=['Alışveriş','Anne-Bebek',
|
|
64 |
|
65 |
|
66 |
if text:
|
67 |
-
|
68 |
with st.spinner('Wait for it...'):
|
69 |
processed_data = prepare_data(text, tokenizer)
|
70 |
result = make_prediction(yorum_model, processed_data=processed_data)
|
|
|
31 |
return yorum_model, tokenizer
|
32 |
|
33 |
st.set_page_config(layout='wide', initial_sidebar_state='expanded')
|
34 |
+
st.markdown("<h1 style='text-align: center;'>TC32 Multi-Class Text Classification</h1><h2>Model Loss and Accuracy</h2>", unsafe_allow_html=True)
|
35 |
+
#st.title("TC32 Multi-Class Text Classification")
|
36 |
+
#st.subheader('Model Loss and Accuracy')
|
37 |
st.markdown("<br>", unsafe_allow_html=True)
|
38 |
st.area_chart(chart_data, height=320)
|
39 |
yorum_model, tokenizer = load_model()
|
40 |
|
41 |
+
st.markdown("<h1 style='text-align: center;'>Sınıfı bulmak için bir şikayet girin. (Ctrl+Enter)</h1><h2>Enter complaint (in Turkish) to find the class.</h2>", unsafe_allow_html=True)
|
42 |
+
#st.title("Sınıfı bulmak için bir şikayet girin. (Ctrl+Enter)")
|
43 |
+
#st.subheader("Enter complaint (in Turkish) to find the class.")
|
44 |
#st.subheader("Şikayet")
|
45 |
text = st.text_area("", "Bebeğim haftada bir kutu mama bitiriyor. Geçen hafta 135 tl'ye aldığım mama bugün 180 tl olmuş. Ben de artık aptamil almayacağım. Tüketici haklarına şikayet etmemiz gerekiyor. Yazıklar olsun.", height=285)
|
46 |
|
|
|
64 |
|
65 |
|
66 |
if text:
|
|
|
67 |
with st.spinner('Wait for it...'):
|
68 |
processed_data = prepare_data(text, tokenizer)
|
69 |
result = make_prediction(yorum_model, processed_data=processed_data)
|