xaitalk commited on
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags: [xaitalk, tabular, explainable-ai, heart-disease]
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# MLP — UCI Heart Disease (Cleveland) — xaitalk tabular demo
|
| 7 |
+
|
| 8 |
+
A small 4-layer MLP (13→64→32→16→2) trained once on the **UCI Heart Disease
|
| 9 |
+
(Cleveland)** dataset, frozen and published so xaitalk's tabular adapter loads
|
| 10 |
+
**fixed, reproducible weights** (via `xaitalk.hub.ensure_model`) across
|
| 11 |
+
PyTorch / TensorFlow / JAX — rather than retraining on every `load()`.
|
| 12 |
+
|
| 13 |
+
This makes the tabular domain deterministic (canonical + cross-device
|
| 14 |
+
consistency) and, crucially, demonstrates XAI on **real, interpretable
|
| 15 |
+
clinical features** (age, cholesterol, resting BP, ...) rather than synthetic
|
| 16 |
+
data — there is no signal to attribute in random data.
|
| 17 |
+
|
| 18 |
+
- Weights: framework-agnostic numpy `.npz` (JAX layout; PT transposes Dense).
|
| 19 |
+
- Trainer: deterministic numpy Adam (seed 42), so the artifact is reproducible.
|
| 20 |
+
- Dataset: UCI Heart Disease (Cleveland), 303 samples, 13 features, 2 classes.
|
| 21 |
+
|
| 22 |
+
Part of [xaitalk](https://huggingface.co/xaitalk) — cross-framework XAI.
|