1 parent 8c7acca commit 4f9779aCopy full SHA for 4f9779a
1 file changed
app.py
@@ -24,7 +24,7 @@
24
APP_DIR = Path(__file__).parent
25
SAMPLE_DATASETS = {
26
"Iris (generic)": APP_DIR / "sample_data" / "iris_contextlens.csv",
27
- "Heart Disease (healthcare)": APP_DIR / "sample_data" / "heart_disease.csv",
+ "Diabetes (healthcare)": APP_DIR / "sample_data" / "diabetes.csv",
28
}
29
30
@@ -119,7 +119,7 @@ def show_issue_cards(issues: list[dict]) -> None:
119
sample_choice = st.selectbox(
120
"Sample dataset",
121
options=list(SAMPLE_DATASETS.keys()),
122
- help="Heart Disease demonstrates ContextLens on a healthcare classification task.",
+ help="Pima Indians Diabetes Dataset demonstrates ContextLens on a healthcare classification task.",
123
)
124
sample_path = SAMPLE_DATASETS[sample_choice]
125
df = read_sample_csv(sample_path)
0 commit comments