ehyo commited on
Commit
515a73b
·
1 Parent(s): 34a5200

fix: define dataset configurations and remove duplicates

Browse files
.DS_Store DELETED
Binary file (10.2 kB)
 
README.md CHANGED
@@ -1,39 +1,190 @@
1
  ---
2
  license: cc-by-4.0
3
-
4
  task_categories:
5
- - tabular-regression
6
- - tabular-classification
7
  language:
8
- - en
9
  tags:
10
- - gpu
11
- - memory-estimation
12
- - utilization-estimation
13
- - deep-learning
14
- - resource-management
15
- - mlp
16
- - cnn
17
- - transformer
18
- pretty_name: GPUMemNet, GPUUtilNet Dataset
19
-
20
- paper: https://arxiv.org/abs/2602.17817
21
  arxiv: 2602.17817
22
  repo: https://github.com/itu-rad/GPUMemNet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  ---
24
 
25
- # GPUMemNet Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
- This dataset accompanies the paper **"GPU Memory and Utilization Estimation for Training-Aware Resource Management: Opportunities and Limitations"** and is released as part of the [GPUMemNet repository](https://github.com/itu-rad/GPUMemNet).
28
 
 
29
 
30
- ## Description
 
 
 
 
 
31
 
32
- A synthetic, extensible dataset for GPU memory and utilization estimation across three neural network architecture families: MLPs, CNNs, and Transformers. Each sample captures architectural properties (layer counts, depth, batch size, number of parameters, number of activations) alongside measured GPU memory consumption and hardware utilization metrics (SMACT, SMOCC, DRAMA), collected under controlled training conditions.
33
 
34
- The dataset is designed to support the development and evaluation of training-aware GPU resource management systems, with a focus on pre-execution memory estimation and interference-aware scheduling through utilization prediction.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  ## Repository
37
 
38
  Code, models, and reproducibility artifacts are available at:
39
- [https://github.com/itu-rad/GPUMemNet](https://github.com/itu-rad/GPUMemNet)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
 
3
  task_categories:
4
+ - tabular-regression
5
+ - tabular-classification
6
  language:
7
+ - en
8
  tags:
9
+ - gpu
10
+ - memory-estimation
11
+ - utilization-estimation
12
+ - deep-learning
13
+ - resource-management
14
+ - mlp
15
+ - cnn
16
+ - transformer
17
+ pretty_name: GPUMemNet and GPUUtilNet Dataset
18
+ paper: https://doi.org/10.1145/3805621.3807621
 
19
  arxiv: 2602.17817
20
  repo: https://github.com/itu-rad/GPUMemNet
21
+ configs:
22
+ - config_name: mlp-memory-step1
23
+ data_files:
24
+ - split: train
25
+ path: MLP/mlp_data1.csv
26
+
27
+ - config_name: mlp-memory-step2
28
+ data_files:
29
+ - split: train
30
+ path: MLP/mlp_data2.csv
31
+
32
+ - config_name: mlp-utilization
33
+ data_files:
34
+ - split: train
35
+ path: MLP/mlp_data_for_util.csv
36
+
37
+ - config_name: mlp-memory-legacy
38
+ data_files:
39
+ - split: train
40
+ path: MLP/fc_data_GPU_memory_extensive.csv
41
+
42
+ - config_name: cnn-memory-step1
43
+ data_files:
44
+ - split: train
45
+ path: CNN/cnn_data1.csv
46
+
47
+ - config_name: cnn-memory-revised
48
+ data_files:
49
+ - split: train
50
+ path: CNN/cnn_data_new_approach.csv
51
+
52
+ - config_name: cnn-utilization
53
+ data_files:
54
+ - split: train
55
+ path: CNN/cnn_data_for_util.csv
56
+
57
+ - config_name: transformer-memory
58
+ data_files:
59
+ - split: train
60
+ path: Transformers/transformer_data1.csv
61
+
62
+ - config_name: transformer-utilization
63
+ data_files:
64
+ - split: train
65
+ path: Transformers/transformer_data_for_util.csv
66
  ---
67
 
68
+ # GPUMemNet and GPUUtilNet Dataset
69
+
70
+ This dataset accompanies the paper
71
+ **“GPU Memory and Utilization Estimation for Training-Aware Resource
72
+ Management: Opportunities and Limitations.”**
73
+
74
+ It contains synthetic deep learning training configurations and their measured
75
+ GPU memory consumption and utilization characteristics.
76
+
77
+ ## Dataset configurations
78
+
79
+ The dataset is divided into separate configurations because MLP, CNN, and
80
+ Transformer workloads use different feature schemas.
81
+
82
+ | Configuration | Rows | Description |
83
+ |---|---:|---|
84
+ | `mlp-memory-step1` | 3,000 | Initial MLP memory and average-utilization measurements |
85
+ | `mlp-memory-step2` | 3,000 | MLP measurements with batch-normalization and dropout features |
86
+ | `mlp-utilization` | 3,000 | MLP average and maximum utilization measurements |
87
+ | `mlp-memory-legacy` | 1,091 | Earlier fully connected network memory dataset |
88
+ | `cnn-memory-step1` | 9,000 | CNN measurements including architecture identifiers |
89
+ | `cnn-memory-revised` | 9,000 | Revised CNN representation |
90
+ | `cnn-utilization` | 9,000 | CNN average and maximum utilization measurements |
91
+ | `transformer-memory` | 5,011 | Transformer memory measurements |
92
+ | `transformer-utilization` | 5,011 | Transformer average and maximum utilization measurements |
93
+
94
+ ## Prediction targets
95
+
96
+ The primary GPU-memory prediction target is:
97
+
98
+ - `Max GPU Memory (MiB)`
99
+
100
+ The legacy MLP configuration uses:
101
 
102
+ - `gpumemory_max`
103
 
104
+ The utilization configurations contain average and maximum values for:
105
 
106
+ - `GPUTL`
107
+ - `GRACT`
108
+ - `SMACT`
109
+ - `SMOCC`
110
+ - `FP32A`
111
+ - `DRAMA`
112
 
113
+ ## Loading
114
 
115
+ Install the Hugging Face datasets package:
116
+
117
+ ```bash
118
+ pip install datasets
119
+ ```
120
+
121
+ Load a specific configuration:
122
+
123
+ ```python
124
+ from datasets import load_dataset
125
+
126
+ dataset = load_dataset(
127
+ "ehyo/GPU-Resources-Estimation-for-Deep-Learning-Training-Tasks",
128
+ "cnn-utilization",
129
+ )
130
+ ```
131
+
132
+ Each configuration currently provides a `train` split containing the complete
133
+ corresponding table.
134
+
135
+ ## Dataset characteristics
136
+
137
+ The workload families contain different features:
138
+
139
+ - **MLP:** depth, activation function, activation counts, parameter counts,
140
+ batch size, batch-normalization layers, and dropout layers.
141
+ - **CNN:** depth, activation function, layer-type counts, batch size, parameter
142
+ counts, activation counts, and analytical memory estimates.
143
+ - **Transformer:** sequence length, embedding size, number of layers, number
144
+ of attention heads, parameter counts, activation counts, and layer-type
145
+ counts.
146
+
147
+ The configurations should be loaded independently because their schemas are
148
+ workload-family specific.
149
+
150
+ ## Data collection
151
+
152
+ The measurements were collected from generated deep learning training
153
+ workloads under controlled execution conditions. The original column names
154
+ and units are preserved for compatibility with the accompanying code and
155
+ published experiments.
156
+
157
+ Further implementation and experimental details are available in the paper
158
+ and GitHub repository.
159
 
160
  ## Repository
161
 
162
  Code, models, and reproducibility artifacts are available at:
163
+
164
+ https://github.com/itu-rad/GPUMemNet
165
+
166
+ ## Citation
167
+
168
+ ```bibtex
169
+ @inproceedings{yousefzadehaslmiandoab2026gpumemory,
170
+ author = {Ehsan Yousefzadeh-Asl-Miandoab and
171
+ Reza Karimzadeh and
172
+ Danyal Yorulmaz and
173
+ Bulat Ibragimov and
174
+ Pınar Tözün},
175
+ title = {GPU Memory and Utilization Estimation for Training-Aware
176
+ Resource Management: Opportunities and Limitations},
177
+ booktitle = {Proceedings of the Sixth European Workshop on Machine
178
+ Learning and Systems},
179
+ series = {EuroMLSys '26},
180
+ pages = {127--138},
181
+ publisher = {Association for Computing Machinery},
182
+ year = {2026},
183
+ doi = {10.1145/3805621.3807621}
184
+ }
185
+ ```
186
+
187
+ ## License
188
+
189
+ This dataset is licensed under the
190
+ [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).
cnn_data_for_util.csv DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:047ef9d65620a70d76e0f04f2a7d45f5820059da5c1ecd5d564dd2571e78bcfa
3
- size 20741975
 
 
 
 
mlp_data_for_util.csv DELETED
The diff for this file is too large to render. See raw diff
 
transformer_data_for_util.csv DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1433a6d47f7c769147dbc8629e8e552a234a24605b6fd0e26db471cf38e37529
3
- size 15886743