nielsr HF Staff commited on
Commit
e2adc4f
·
verified ·
1 Parent(s): 70ffcd0

Improve dataset card: Add paper/code links, description, tasks, and update license

Browse files

This PR significantly enhances the dataset card by adding:
- A link to the associated paper.
- A link to the GitHub repository.
- A detailed description of the dataset and its sub-datasets.
- Task categories (`time-series-forecasting`) and relevant tags.
- Citation information.

The license has also been updated from `apache-2.0` to `MIT`, aligning with the license specified in the GitHub repository.

Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - time-series-forecasting
5
+ tags:
6
+ - regression
7
+ - tabular-data
8
+ - imbalanced-learning
9
+ - sep-forecasting
10
+ - solar-physics
11
+ ---
12
+
13
+ # Highly Imbalanced Regression with Tabular Data in SEP and Other Applications
14
+
15
+ 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).
16
+
17
+ Code: [https://github.com/Machine-Earning/CISIR](https://github.com/Machine-Earning/CISIR)
18
+
19
+ ## Abstract
20
+
21
+ 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.
22
+
23
+ ## Overview
24
+
25
+ This dataset collection is part of 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.
26
+
27
+ ### Key Contributions (from the associated paper)
28
+
29
+ - **Correlation-aware loss function** that considers the correlation between predicted and actual values
30
+ - **Monotonically Decreasing Involution (MDI) importance** weighting that outperforms traditional convex importance functions
31
+ - **Stratified sampling strategy** that ensures rare instances are included in mini-batches
32
+ - **Comprehensive evaluation** on five highly imbalanced datasets with imbalance ratios > 1,000
33
+
34
+ ## Datasets
35
+
36
+ We evaluate our method on five highly imbalanced datasets:
37
+
38
+ ### SEP Datasets
39
+ - **SEP-EC**: Forecasts the change (delta) in proton intensity based on features from electron intensity and CMEs (Coronal Mass Ejections).
40
+ - **SEP-C**: Forecasts peak proton intensity based on CME characteristics.
41
+
42
+ ### Other Datasets
43
+ - **SARCOS**: Estimates the torque vector based on joint-state inputs for a 7-DOF robot arm.
44
+ - **Blog Feedback (BF)**: Forecasts the number of comments based on textual, temporal, and engagement features
45
+ - **Online News Popularity (ONP)**: Estimates the number of shares of an article based on content, topic, and sentiment attributes
46
+
47
+ All datasets exhibit high imbalance ratios (ρ > 1,000), making them ideal for evaluating highly imbalanced regression methods.
48
+
49
+ ### Data Availability
50
+ You can download the combined dataset archive here: [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
+ ## Citation
53
+
54
+ If you find this dataset useful in your research, please consider citing the associated paper:
55
+
56
+ ```bibtex
57
+ @inproceedings{moukpe2024cisir,
58
+ title={Highly Imbalanced Regression with Tabular Data in SEP and Other Applications},
59
+ author={Moukpe, Josias K. and Chan, Philip K. and Zhang, Ming},
60
+ booktitle={Proceedings of the IEEE International Conference on Machine Learning and Applications (ICMLA)},
61
+ year={2024},
62
+ organization={IEEE}
63
+ }
64
+ ```