Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -17,22 +17,17 @@ def main():
|
|
17 |
st.title("Machine Learning")
|
18 |
|
19 |
with st.expander("1: Add Your Data Source"):
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
data = pd.read_csv(uploaded_file)
|
31 |
-
st.success(f"Successfully loaded {uploaded_file.name}")
|
32 |
-
except pd.errors.EmptyDataError:
|
33 |
-
st.error("The uploaded file is empty or contains no data.")
|
34 |
-
except Exception as e:
|
35 |
-
st.error(f"An error occurred while reading the file: {str(e)}")
|
36 |
|
37 |
with st.expander("2: DataSet Preview"):
|
38 |
if uploaded_file is not None:
|
|
|
17 |
st.title("Machine Learning")
|
18 |
|
19 |
with st.expander("1: Add Your Data Source"):
|
20 |
+
uploaded_file = st.file_uploader("Upload your CSV file", type=["csv"])
|
21 |
+
|
22 |
+
# If no file is uploaded, load example.csv
|
23 |
+
if uploaded_file is None:
|
24 |
+
try:
|
25 |
+
data = pd.read_csv('example.csv') # Load example CSV
|
26 |
+
st.info("Loaded example.csv")
|
27 |
+
except FileNotFoundError:
|
28 |
+
st.error("Example CSV file not found. Please upload your own CSV file.")
|
29 |
+
else:
|
30 |
data = pd.read_csv(uploaded_file)
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
with st.expander("2: DataSet Preview"):
|
33 |
if uploaded_file is not None:
|