Improve dataset card for CISIR-datasets: Add paper/code links, metadata, and description
#2
by
nielsr
HF Staff
- opened
README.md
CHANGED
|
@@ -1,3 +1,66 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- tabular-regression
|
| 5 |
+
tags:
|
| 6 |
+
- regression
|
| 7 |
+
- tabular-data
|
| 8 |
+
- imbalanced-learning
|
| 9 |
+
- sep-forecasting
|
| 10 |
+
- solar-physics
|
| 11 |
+
- machine-learning
|
| 12 |
+
- deep-learning
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Highly Imbalanced Regression with Tabular Data in SEP and Other Applications
|
| 16 |
+
|
| 17 |
+
This repository contains the highly imbalanced tabular datasets used in the paper "[Highly Imbalanced Regression with Tabular Data in SEP and Other Applications](https://huggingface.co/papers/2509.16339)".
|
| 18 |
+
|
| 19 |
+
The associated code for the CISIR method can be found on GitHub: [https://github.com/Machine-Earning/CISIR](https://github.com/Machine-Earning/CISIR).
|
| 20 |
+
|
| 21 |
+
## Abstract
|
| 22 |
+
|
| 23 |
+
We investigate imbalanced regression with tabular data that have an imbalance ratio larger than 1,000 ("highly imbalanced"). Accurately estimating the target values of rare instances is important in applications such as forecasting the intensity of rare harmful Solar Energetic Particle (SEP) events. For regression, the MSE loss does not consider the correlation between predicted and actual values. Typical inverse importance functions allow only convex functions. Uniform sampling might yield mini-batches that do not have rare instances. We propose CISIR that incorporates correlation, Monotonically Decreasing Involution (MDI) importance, and stratified sampling. Based on five datasets, our experimental results indicate that CISIR can achieve lower error and higher correlation than some recent methods. Also, adding our correlation component to other recent methods can improve their performance. Lastly, MDI importance can outperform other importance functions.
|
| 24 |
+
|
| 25 |
+
## Overview
|
| 26 |
+
|
| 27 |
+
This repository contains the datasets for the official implementation of **CISIR** (Correlation, Involution, Stratified Importance Regression), a novel method for highly imbalanced regression with tabular data. The method is particularly applicable to SEP (Solar Energetic Particle) forecasting research for NASA and other domains requiring accurate prediction of rare, high-impact events.
|
| 28 |
+
|
| 29 |
+
### Key Contributions
|
| 30 |
+
|
| 31 |
+
- **Correlation-aware loss function** that considers the correlation between predicted and actual values
|
| 32 |
+
- **Monotonically Decreasing Involution (MDI) importance** weighting that outperforms traditional convex importance functions
|
| 33 |
+
- **Stratified sampling strategy** that ensures rare instances are included in mini-batches
|
| 34 |
+
- **Comprehensive evaluation** on five highly imbalanced datasets with imbalance ratios > 1,000
|
| 35 |
+
|
| 36 |
+
## Datasets
|
| 37 |
+
|
| 38 |
+
We evaluate our method on five highly imbalanced datasets:
|
| 39 |
+
|
| 40 |
+
### SEP Datasets
|
| 41 |
+
- **SEP-EC**: Forecasts the change (delta) in proton intensity based on features from electron intensity and CMEs (Coronal Mass Ejections)
|
| 42 |
+
- **SEP-C**: Forecasts peak proton intensity based on CME characteristics
|
| 43 |
+
|
| 44 |
+
### Other Datasets
|
| 45 |
+
- **SARCOS**: Estimates the torque vector based on joint-state inputs for a 7-DOF robot arm
|
| 46 |
+
- **Blog Feedback (BF)**: Forecasts the number of comments based on textual, temporal, and engagement features
|
| 47 |
+
- **Online News Popularity (ONP)**: Estimates the number of shares of an article based on content, topic, and sentiment attributes
|
| 48 |
+
|
| 49 |
+
### Data Availability
|
| 50 |
+
All datasets are available for download as a single ZIP file: [https://huggingface.co/datasets/Machine-Earning/CISIR-datasets/resolve/main/CISIR-data.zip](https://huggingface.co/datasets/Machine-Earning/CISIR-datasets/resolve/main/CISIR-data.zip)
|
| 51 |
+
|
| 52 |
+
All datasets exhibit high imbalance ratios (ρ > 1,000), making them ideal for evaluating highly imbalanced regression methods.
|
| 53 |
+
|
| 54 |
+
## Citation
|
| 55 |
+
|
| 56 |
+
If you find this repository useful in your research, please consider giving a star ⭐ and a citation:
|
| 57 |
+
|
| 58 |
+
```bibtex
|
| 59 |
+
@inproceedings{moukpe2024cisir,
|
| 60 |
+
title={Highly Imbalanced Regression with Tabular Data in SEP and Other Applications},
|
| 61 |
+
author={Moukpe, Josias K. and Chan, Philip K. and Zhang, Ming},
|
| 62 |
+
booktitle={Proceedings of the IEEE International Conference on Machine Learning and Applications (ICMLA)},
|
| 63 |
+
year={2024},
|
| 64 |
+
organization={IEEE}
|
| 65 |
+
}
|
| 66 |
+
```
|