Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.set_page_config(page_title="Turkish Text Classificaition - via AG", page_icon='📖')
|
4 |
+
st.header("📖News or Spam Classification Tasks - Choose one")
|
5 |
+
|
6 |
+
|
7 |
+
st.write(f"""
|
8 |
+
Do you want to text classification analysis for Turkish language? \n
|
9 |
+
This space analyzes your news classification (models have 7 labels) or spam mail classification as ham-spam. \n
|
10 |
+
You also upload your own file and obtain file analysis results, then download it. \n
|
11 |
+
I wait to try your data.
|
12 |
+
""")
|