Update app.py to refine completion message for analysis, specifying that only logistic regression was executed on Supabase data.
Browse files
app.py
CHANGED
|
@@ -206,7 +206,7 @@ def analyze_from_supabase(threshold, top_k):
|
|
| 206 |
status_md += f"\n❗ ロジスティック回帰の学習に失敗しました: {e}"
|
| 207 |
coef_df = pd.DataFrame(columns=["feature", "coef", "sign", "rank"]).set_index("feature")
|
| 208 |
|
| 209 |
-
status_md += "\n\n✅ 解析完了:Supabase データに対して
|
| 210 |
|
| 211 |
return status_md, head_df, label_counts, corr_df, ttest_df, gallery_imgs, coef_df
|
| 212 |
|
|
|
|
| 206 |
status_md += f"\n❗ ロジスティック回帰の学習に失敗しました: {e}"
|
| 207 |
coef_df = pd.DataFrame(columns=["feature", "coef", "sign", "rank"]).set_index("feature")
|
| 208 |
|
| 209 |
+
status_md += "\n\n✅ 解析完了:Supabase データに対して ロジスティック回帰 を実行しました。"
|
| 210 |
|
| 211 |
return status_md, head_df, label_counts, corr_df, ttest_df, gallery_imgs, coef_df
|
| 212 |
|