Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ with col1:
|
|
9 |
st.title("Spamd: Turkish Spam Detector")
|
10 |
st.markdown("Message spam detection tool for Turkish language. Due the small size of the dataset, I decided to go with transformers technology Google BERT. Using the Turkish pre-trained model BERTurk, I imporved the accuracy of the tool by 18 percent compared to the previous model which used fastText.")
|
11 |
|
12 |
-
if st.button('Load Model', disabled=
|
13 |
with st.spinner('Wait for it...'):
|
14 |
import torch
|
15 |
import numpy as np
|
|
|
9 |
st.title("Spamd: Turkish Spam Detector")
|
10 |
st.markdown("Message spam detection tool for Turkish language. Due the small size of the dataset, I decided to go with transformers technology Google BERT. Using the Turkish pre-trained model BERTurk, I imporved the accuracy of the tool by 18 percent compared to the previous model which used fastText.")
|
11 |
|
12 |
+
if st.button('Load Model', disabled=True):
|
13 |
with st.spinner('Wait for it...'):
|
14 |
import torch
|
15 |
import numpy as np
|