Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -128,10 +128,10 @@ def data_upload_page():
|
|
| 128 |
col2.metric("Features", df.shape[1])
|
| 129 |
col3.metric("Missing Values", df.isna().sum().sum())
|
| 130 |
|
| 131 |
-
if st.button("Generate Full
|
| 132 |
-
with st.spinner("Generating
|
| 133 |
-
|
| 134 |
-
st_profile_report(
|
| 135 |
|
| 136 |
def model_training_page():
|
| 137 |
st.title("🧠 Model Training Studio")
|
|
|
|
| 128 |
col2.metric("Features", df.shape[1])
|
| 129 |
col3.metric("Missing Values", df.isna().sum().sum())
|
| 130 |
|
| 131 |
+
if st.button("Generate Full Profile Report"):
|
| 132 |
+
with st.spinner("Generating report..."):
|
| 133 |
+
pr = ProfileReport(df, explorative=True)
|
| 134 |
+
st_profile_report(pr)
|
| 135 |
|
| 136 |
def model_training_page():
|
| 137 |
st.title("🧠 Model Training Studio")
|