Update app.py
Browse files
app.py
CHANGED
@@ -18,9 +18,10 @@ def main():
|
|
18 |
|
19 |
# Upload CSV files
|
20 |
st.subheader("Upload Positive Labeled CSV")
|
21 |
-
positive_file = st.file_uploader("Upload CSV", type=['csv'])
|
22 |
st.subheader("Upload Unlabelled Data CSV")
|
23 |
-
unlabelled_file = st.file_uploader("Upload CSV", type=['csv'])
|
|
|
24 |
|
25 |
if positive_file is not None and unlabelled_file is not None:
|
26 |
# Read CSV files
|
|
|
18 |
|
19 |
# Upload CSV files
|
20 |
st.subheader("Upload Positive Labeled CSV")
|
21 |
+
positive_file = st.file_uploader("Upload CSV", type=['csv'], key="positive")
|
22 |
st.subheader("Upload Unlabelled Data CSV")
|
23 |
+
unlabelled_file = st.file_uploader("Upload CSV", type=['csv'], key="unlabelled")
|
24 |
+
|
25 |
|
26 |
if positive_file is not None and unlabelled_file is not None:
|
27 |
# Read CSV files
|