Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +13 -13
src/streamlit_app.py
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
import prediction
|
3 |
-
|
4 |
-
# st.set_page_config(
|
5 |
-
# page_title='Hat',
|
6 |
-
# layout='wide',
|
7 |
-
# initial_sidebar_state='expanded'
|
8 |
-
# )
|
9 |
-
|
10 |
-
page = st.sidebar.selectbox('Pilih Halaman', ('Prediction'))
|
11 |
-
|
12 |
-
if page == '
|
13 |
-
prediction.run()
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import prediction
|
3 |
+
|
4 |
+
# st.set_page_config(
|
5 |
+
# page_title='Hat',
|
6 |
+
# layout='wide',
|
7 |
+
# initial_sidebar_state='expanded'
|
8 |
+
# )
|
9 |
+
|
10 |
+
page = st.sidebar.selectbox('Pilih Halaman', ('Prediction'))
|
11 |
+
|
12 |
+
if page == 'Prediction':
|
13 |
+
prediction.run()
|