Improve dataset card: Add metadata, links, and comprehensive description

#5
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +61 -3
README.md CHANGED
@@ -1,3 +1,61 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-regression
5
+ - robotics
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 the datasets used in the paper "[Highly Imbalanced Regression with Tabular Data in SEP and Other Applications](https://huggingface.co/papers/2509.16339)". This work investigates highly imbalanced regression with tabular data, where imbalance ratios exceed 1,000. It's particularly relevant for applications like forecasting the intensity of rare harmful Solar Energetic Particle (SEP) events.
19
+
20
+ The associated code and method implementation can be found on GitHub: [https://github.com/Machine-Earning/CISIR](https://github.com/Machine-Earning/CISIR)
21
+
22
+ ## Overview
23
+
24
+ This repository contains 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.
25
+
26
+ ### Key Contributions
27
+
28
+ - **Correlation-aware loss function** that considers the correlation between predicted and actual values
29
+ - **Monotonically Decreasing Involution (MDI) importance** weighting that outperforms traditional convex importance functions
30
+ - **Stratified sampling strategy** that ensures rare instances are included in mini-batches
31
+ - **Comprehensive evaluation** on five highly imbalanced datasets with imbalance ratios > 1,000
32
+
33
+ ## Datasets
34
+
35
+ 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.
36
+
37
+ ### SEP Datasets
38
+ - **SEP-EC**: Forecasts the change (delta) in proton intensity based on features from electron intensity and CMEs (Coronal Mass Ejections)
39
+ - **SEP-C**: Forecasts peak proton intensity based on CME characteristics
40
+
41
+ ### Other Datasets
42
+ - **SARCOS**: Estimates the torque vector based on joint-state inputs for a 7-DOF robot arm
43
+ - **Blog Feedback (BF)**: Forecasts the number of comments based on textual, temporal, and engagement features
44
+ - **Online News Popularity (ONP)**: Estimates the number of shares of an article based on content, topic, and sentiment attributes
45
+
46
+ ### Data Availability
47
+ The datasets are available for direct download at: https://huggingface.co/datasets/Machine-Earning/CISIR-datasets/resolve/main/CISIR-data.zip
48
+
49
+ ## Citation
50
+
51
+ If you find this repository useful in your research, please consider giving a star ⭐ and a citation:
52
+
53
+ ```bibtex
54
+ @inproceedings{moukpe2024cisir,
55
+ title={Highly Imbalanced Regression with Tabular Data in SEP and Other Applications},
56
+ author={Moukpe, Josias K. and Chan, Philip K. and Zhang, Ming},
57
+ booktitle={Proceedings of the IEEE International Conference on Machine Learning and Applications (ICMLA)},
58
+ year={2024},
59
+ organization={IEEE}
60
+ }
61
+ ```