bishep-tabular-eval
BiSHop: Bi-Directional Cellular Learning for Tabular Data with Generalized Sparse Modern Hopfield Model — Chenwei Xu et al. (arXiv:2404.03830, 2024)
What this evaluates
Evaluates the performance of the BiSHop model on tabular classification and regression tasks, probing its ability to handle mixed feature types, bi-directional cellular learning, and generalized sparse modern Hopfield layers.
Datasets
- Tabular Benchmarks (Adult, Bank, Blastchar, Income, SeismicBump, Shrutime, Spambase, Qsar, Jannis, CR) — total ?; splits: test (-1)
Metrics
AUC (%) (primary) — range: percent
- Area under the Receiver Operating Characteristic curve, reported as a percentage.
R2 — range: other
- Coefficient of determination for regression tasks, measuring the proportion of variance in the dependent variable predictable from the independent variables.
Input / output format
Input: Tabular dataset rows containing mixed categorical and numerical features.
Output: Predicted class probabilities or scores for classification; continuous target values for regression.
Scoring recipe
def compute_auc(y_true, y_pred):
fpr, tpr, _ = roc_curve(y_true, y_pred)
return auc(fpr, tpr) * 100
def compute_r2(y_true, y_pred):
ss_res = np.sum((y_true - y_pred) ** 2)
ss_tot = np.sum((y_true - np.mean(y_true)) ** 2)
return 1 - (ss_res / ss_tot)
Common pitfalls
- Averaging AUC scores across all datasets masks per-dataset performance variations.
- Data rotation experiments show that BiSHop's performance drops significantly when both directions and datasets are rotated, highlighting sensitivity to orientation.
- Ablation studies must use default hyperparameters for remaining components to ensure fair comparison.
Evidence (verbatim from paper)
We report the average AUC score (in %) over 10 runs in Table 18. The results indicate the superior performance of our proposed generalized sparse modern Hopfield model across datasets.
Citation
@misc{xu2024bishep,
title={BiSHop: Bi-Directional Cellular Learning for Tabular Data with Generalized Sparse Modern Hopfield Model},
author={Chenwei Xu et al.},
year={2024},
note={arXiv:2404.03830}
}
1---2name: bishep-tabular-eval3description: Evaluates the performance of the BiSHop model on tabular classification and regression tasks, probing its ability to handle mixed feature types, bi-directional cellular learning, and generalized sparse modern Hopfield layers. Use when the user wants to benchmark on Tabular Benchmarks (Adult, Bank, Blastchar, Income, SeismicBump, Shrutime, Spambase, Qsar, Jannis, CR), or asks about evaluating this task. Reports AUC (%).4---56# bishep-tabular-eval78> BiSHop: Bi-Directional Cellular Learning for Tabular Data with Generalized Sparse Modern Hopfield Model — Chenwei Xu et al. (arXiv:2404.03830, 2024)910## What this evaluates1112Evaluates the performance of the BiSHop model on tabular classification and regression tasks, probing its ability to handle mixed feature types, bi-directional cellular learning, and generalized sparse modern Hopfield layers.1314## Datasets1516- **Tabular Benchmarks (Adult, Bank, Blastchar, Income, SeismicBump, Shrutime, Spambase, Qsar, Jannis, CR)** — total ?; splits: test (-1)1718## Metrics1920- `AUC (%)` **(primary)** — range: percent21 - Area under the Receiver Operating Characteristic curve, reported as a percentage.22- `R2` — range: other23 - Coefficient of determination for regression tasks, measuring the proportion of variance in the dependent variable predictable from the independent variables.2425## Input / output format2627**Input**: Tabular dataset rows containing mixed categorical and numerical features.2829**Output**: Predicted class probabilities or scores for classification; continuous target values for regression.3031## Scoring recipe3233```python34def compute_auc(y_true, y_pred):35 fpr, tpr, _ = roc_curve(y_true, y_pred)36 return auc(fpr, tpr) * 1003738def compute_r2(y_true, y_pred):39 ss_res = np.sum((y_true - y_pred) ** 2)40 ss_tot = np.sum((y_true - np.mean(y_true)) ** 2)41 return 1 - (ss_res / ss_tot)42```4344## Common pitfalls4546- Averaging AUC scores across all datasets masks per-dataset performance variations.47- Data rotation experiments show that BiSHop's performance drops significantly when both directions and datasets are rotated, highlighting sensitivity to orientation.48- Ablation studies must use default hyperparameters for remaining components to ensure fair comparison.4950## Evidence (verbatim from paper)5152> We report the average AUC score (in %) over 10 runs in Table 18. The results indicate the superior performance of our proposed generalized sparse modern Hopfield model across datasets.5354## Citation5556```bibtex57@misc{xu2024bishep,58 title={BiSHop: Bi-Directional Cellular Learning for Tabular Data with Generalized Sparse Modern Hopfield Model},59 author={Chenwei Xu et al.},60 year={2024},61 note={arXiv:2404.03830}62}63```6465- arXiv: 2404.03830