Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -3
src/streamlit_app.py
CHANGED
|
@@ -379,10 +379,10 @@ with tabs[4]:
|
|
| 379 |
feature_filter = st.checkbox("Use key furnace-relevant features", value=True)
|
| 380 |
with colB:
|
| 381 |
random_seed = st.number_input("Random Seed", min_value=0, max_value=9999, value=42)
|
| 382 |
-
n_estimators = st.slider("n_estimators (trees)", 50,
|
| 383 |
with colC:
|
| 384 |
-
furnace_temp_sd = st.slider("Synthetic Furnace Temp σ (spread)", 20,
|
| 385 |
-
arc_power_sd = st.slider("Synthetic Arc Power σ (spread)", 50,
|
| 386 |
st.markdown("---")
|
| 387 |
|
| 388 |
# --- Variance Controls UI ---
|
|
|
|
| 379 |
feature_filter = st.checkbox("Use key furnace-relevant features", value=True)
|
| 380 |
with colB:
|
| 381 |
random_seed = st.number_input("Random Seed", min_value=0, max_value=9999, value=42)
|
| 382 |
+
n_estimators = st.slider("n_estimators (trees)", 50, 600, 150, step=25)
|
| 383 |
with colC:
|
| 384 |
+
furnace_temp_sd = st.slider("Synthetic Furnace Temp σ (spread)", 20, 500, 50, step=10)
|
| 385 |
+
arc_power_sd = st.slider("Synthetic Arc Power σ (spread)", 50, 700, 120, step=10)
|
| 386 |
st.markdown("---")
|
| 387 |
|
| 388 |
# --- Variance Controls UI ---
|