Improve dataset card: Add paper, code, description, tasks, and tags (Update license to MIT)
Browse filesThis PR significantly improves the dataset card for the CISIR datasets.
It adds:
- A link to the paper: https://huggingface.co/papers/2509.16339
- A link to the associated GitHub repository for the code: https://github.com/Machine-Earning/CISIR
- A detailed description of the dataset collection, including the abstract, overview, key contributions, and individual dataset descriptions, sourced from the paper and its GitHub README.
- Relevant `task_categories` (`tabular-regression`) and `tags` (e.g., `regression`, `tabular-data`, `imbalanced-learning`, `sep-forecasting`, `solar-physics`, `machine-learning`, `deep-learning`) for better discoverability.
- The BibTeX citation for proper attribution.
- A direct link for data download.
The `license` in the metadata has also been corrected from `apache-2.0` to `mit`, as indicated in the project's GitHub repository.
|
@@ -1,3 +1,67 @@
|
|
| 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 datasets used in the paper [Highly Imbalanced Regression with Tabular Data in SEP and Other Applications](https://huggingface.co/papers/2509.16339).
|
| 18 |
+
|
| 19 |
+
Code: [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 dataset collection supports 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. All datasets exhibit high imbalance ratios (ρ > 1,000), making them ideal for evaluating highly imbalanced regression methods.
|
| 39 |
+
|
| 40 |
+
Download all datasets: [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)
|
| 41 |
+
|
| 42 |
+
### SEP Datasets
|
| 43 |
+
- **SEP-EC**: Forecasts the change (delta) in proton intensity based on features from electron intensity and CMEs (Coronal Mass Ejections)
|
| 44 |
+
- **SEP-C**: Forecasts peak proton intensity based on CME characteristics
|
| 45 |
+
|
| 46 |
+
### Other Datasets
|
| 47 |
+
- **SARCOS**: Estimates the torque vector based on joint-state inputs for a 7-DOF robot arm
|
| 48 |
+
- **Blog Feedback (BF)**: Forecasts the number of comments based on textual, temporal, and engagement features
|
| 49 |
+
- **Online News Popularity (ONP)**: Estimates the number of shares of an article based on content, topic, and sentiment attributes
|
| 50 |
+
|
| 51 |
+
## Citation
|
| 52 |
+
|
| 53 |
+
If you find these datasets useful in your research, please consider citing the associated paper:
|
| 54 |
+
|
| 55 |
+
```bibtex
|
| 56 |
+
@inproceedings{moukpe2024cisir,
|
| 57 |
+
title={Highly Imbalanced Regression with Tabular Data in SEP and Other Applications},
|
| 58 |
+
author={Moukpe, Josias K. and Chan, Philip K. and Zhang, Ming},
|
| 59 |
+
booktitle={Proceedings of the IEEE International Conference on Machine Learning and Applications (ICMLA)},
|
| 60 |
+
year={2024},
|
| 61 |
+
organization={IEEE}
|
| 62 |
+
}
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
## License
|
| 66 |
+
|
| 67 |
+
This project and its datasets are licensed under the MIT License.
|