Skip to content

Commit 4f9779a

Browse files
authored
Update app.py
1 parent 8c7acca commit 4f9779a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
APP_DIR = Path(__file__).parent
2525
SAMPLE_DATASETS = {
2626
"Iris (generic)": APP_DIR / "sample_data" / "iris_contextlens.csv",
27-
"Heart Disease (healthcare)": APP_DIR / "sample_data" / "heart_disease.csv",
27+
"Diabetes (healthcare)": APP_DIR / "sample_data" / "diabetes.csv",
2828
}
2929

3030

@@ -119,7 +119,7 @@ def show_issue_cards(issues: list[dict]) -> None:
119119
sample_choice = st.selectbox(
120120
"Sample dataset",
121121
options=list(SAMPLE_DATASETS.keys()),
122-
help="Heart Disease demonstrates ContextLens on a healthcare classification task.",
122+
help="Pima Indians Diabetes Dataset demonstrates ContextLens on a healthcare classification task.",
123123
)
124124
sample_path = SAMPLE_DATASETS[sample_choice]
125125
df = read_sample_csv(sample_path)

0 commit comments

Comments
 (0)