Update app.py
Browse files
app.py
CHANGED
@@ -255,8 +255,8 @@ def predict(
|
|
255 |
|
256 |
# D) Simple Distribution Plot (demo for first 3 labels & 4 inputs)
|
257 |
# (Unchanged from prior approach; you can remove if you prefer.)
|
258 |
-
sample_feats = list(user_input_data.keys())[:
|
259 |
-
sample_labels = [fn.split(".")[0] for fn in model_filenames[:
|
260 |
dist_segments = []
|
261 |
for feat in sample_feats:
|
262 |
if feat not in df.columns:
|
|
|
255 |
|
256 |
# D) Simple Distribution Plot (demo for first 3 labels & 4 inputs)
|
257 |
# (Unchanged from prior approach; you can remove if you prefer.)
|
258 |
+
sample_feats = list(user_input_data.keys())[:31]
|
259 |
+
sample_labels = [fn.split(".")[0] for fn in model_filenames[:15]]
|
260 |
dist_segments = []
|
261 |
for feat in sample_feats:
|
262 |
if feat not in df.columns:
|