Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
@@ -169,7 +169,7 @@ elif choose == "CNN":
|
|
169 |
|
170 |
# Upload file
|
171 |
training_file = st.file_uploader("Upload Data Training (.txt)", type=["txt"],key="upload", accept_multiple_files=True)
|
172 |
-
real_files = st.file_uploader("Upload Data Real (.txt)", type=["txt"],
|
173 |
|
174 |
if training_file:
|
175 |
if training_file.size > 50 * 1024 * 1024: # Batasi ukuran file <= 50MB
|
|
|
169 |
|
170 |
# Upload file
|
171 |
training_file = st.file_uploader("Upload Data Training (.txt)", type=["txt"],key="upload", accept_multiple_files=True)
|
172 |
+
real_files = st.file_uploader("Upload Data Real (.txt)", type=["txt"], key="upload", accept_multiple_files=True)
|
173 |
|
174 |
if training_file:
|
175 |
if training_file.size > 50 * 1024 * 1024: # Batasi ukuran file <= 50MB
|