Update dataset card: add metadata, paper/code links, and detailed description

#4
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +76 -3
README.md CHANGED
@@ -1,3 +1,76 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - TABULAR_REGRESSION
5
+ - TIME_SERIES_FORECASTING
6
+ tags:
7
+ - regression
8
+ - tabular-data
9
+ - imbalanced-learning
10
+ - sep-forecasting
11
+ - solar-physics
12
+ - machine-learning
13
+ - deep-learning
14
+ ---
15
+
16
+ # Highly Imbalanced Regression with Tabular Data in SEP and Other Applications
17
+
18
+ This repository contains datasets used in the paper [Highly Imbalanced Regression with Tabular Data in SEP and Other Applications](https://huggingface.co/papers/2509.16339). The associated code for the CISIR method is available on [GitHub](https://github.com/Machine-Earning/CISIR).
19
+
20
+ ## Abstract
21
+
22
+ 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.
23
+
24
+ ## Overview
25
+
26
+ This dataset collection is used 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.
27
+
28
+ ### Key Contributions of the associated paper:
29
+
30
+ - **Correlation-aware loss function** that considers the correlation between predicted and actual values
31
+ - **Monotonically Decreasing Involution (MDI) importance** weighting that outperforms traditional convex importance functions
32
+ - **Stratified sampling strategy** that ensures rare instances are included in mini-batches
33
+ - **Comprehensive evaluation** on five highly imbalanced datasets with imbalance ratios > 1,000
34
+
35
+ ## Datasets
36
+
37
+ We evaluate our method on five highly imbalanced datasets:
38
+
39
+ ### SEP Datasets
40
+ - **SEP-EC**: Forecasts the change (delta) in proton intensity based on features from electron intensity and CMEs (Coronal Mass Ejections)
41
+ - **SEP-C**: Forecasts peak proton intensity based on CME characteristics
42
+
43
+ ### Other Datasets
44
+ - **SARCOS**: Estimates the torque vector based on joint-state inputs for a 7-DOF robot arm
45
+ - **Blog Feedback (BF)**: Forecasts the number of comments based on textual, temporal, and engagement features
46
+ - **Online News Popularity (ONP)**: Estimates the number of shares of an article based on content, topic, and sentiment attributes
47
+
48
+ All datasets exhibit high imbalance ratios (ρ > 1,000), making them ideal for evaluating highly imbalanced regression methods.
49
+
50
+ You can download all datasets from [CISIR-data.zip](https://huggingface.co/datasets/Machine-Earning/CISIR-datasets/resolve/main/CISIR-data.zip).
51
+
52
+ ## Authors
53
+
54
+ **Josias K. Moukpe**¹ · **Philip K. Chan**¹ · **Ming Zhang**²
55
+
56
+ ¹Department of Electrical Engineering and Computer Science
57
+ ²Department of Aerospace, Physics and Space Sciences
58
+ Florida Institute of Technology, Melbourne, FL, USA
59
+
60
+ **Contact**: jmoukpe2016@my.fit.edu, {pkc, mzhang}@fit.edu
61
+
62
+ ---
63
+
64
+ ## Citation
65
+
66
+ If you find this repository useful in your research, please consider giving a star ⭐️ and a citation:
67
+
68
+ ```bibtex
69
+ @inproceedings{moukpe2024cisir,
70
+ title={Highly Imbalanced Regression with Tabular Data in SEP and Other Applications},
71
+ author={Moukpe, Josias K. and Chan, Philip K. and Zhang, Ming},
72
+ booktitle={Proceedings of the IEEE International Conference on Machine Learning and Applications (ICMLA)},
73
+ year={2024},
74
+ organization={IEEE}
75
+ }
76
+ ```