Datasets:
img listlengths 32 32 | label int64 0 9 |
|---|---|
[
[
[
158,
112,
49
],
[
159,
111,
47
],
[
165,
116,
51
],
[
166,
118,
53
],
[
160,
112,
46
],
[
156,
109,
41
],
[
162,
115,
47
],
[
... | 3 |
[
[
[
235,
235,
235
],
[
231,
231,
231
],
[
232,
232,
232
],
[
232,
232,
232
],
[
232,
232,
232
],
[
232,
232,
232
],
[
232,
232,
232
],... | 8 |
[
[
[
158,
190,
222
],
[
158,
187,
218
],
[
139,
166,
194
],
[
132,
158,
186
],
[
166,
193,
222
],
[
182,
208,
236
],
[
187,
211,
238
],... | 8 |
[
[
[
155,
156,
149
],
[
167,
176,
187
],
[
176,
179,
193
],
[
190,
192,
205
],
[
177,
185,
202
],
[
166,
171,
183
],
[
168,
173,
181
],... | 0 |
[
[
[
65,
68,
50
],
[
70,
81,
64
],
[
48,
64,
46
],
[
30,
46,
30
],
[
23,
33,
22
],
[
40,
57,
36
],
[
44,
75,
55
],
[
45,
... | 6 |
[
[
[
179,
118,
83
],
[
139,
96,
61
],
[
77,
49,
26
],
[
88,
59,
36
],
[
141,
96,
65
],
[
157,
95,
67
],
[
156,
84,
58
],
[
15... | 6 |
[
[
[
160,
37,
13
],
[
185,
49,
11
],
[
209,
57,
14
],
[
217,
58,
10
],
[
230,
66,
9
],
[
246,
78,
10
],
[
249,
80,
5
],
[
246... | 1 |
[
[
[
83,
94,
85
],
[
82,
94,
84
],
[
81,
93,
83
],
[
77,
89,
79
],
[
81,
90,
80
],
[
85,
90,
82
],
[
91,
96,
93
],
[
92,
... | 6 |
[
[
[
23,
19,
23
],
[
19,
21,
28
],
[
21,
16,
19
],
[
65,
47,
40
],
[
164,
131,
113
],
[
188,
147,
115
],
[
183,
147,
109
],
[
... | 3 |
[
[
[
217,
215,
209
],
[
210,
208,
202
],
[
205,
208,
191
],
[
199,
202,
182
],
[
218,
215,
209
],
[
214,
209,
209
],
[
207,
202,
198
],... | 1 |
[
[
[
90,
124,
149
],
[
90,
124,
149
],
[
91,
125,
150
],
[
91,
125,
150
],
[
93,
126,
151
],
[
94,
128,
153
],
[
94,
128,
153
],
[
... | 0 |
[
[
[
255,
255,
251
],
[
252,
253,
248
],
[
251,
252,
247
],
[
249,
253,
247
],
[
249,
253,
247
],
[
251,
252,
247
],
[
252,
251,
247
],... | 9 |
[
[
[
91,
64,
30
],
[
82,
58,
30
],
[
87,
73,
59
],
[
89,
87,
83
],
[
95,
92,
80
],
[
98,
90,
71
],
[
97,
87,
68
],
[
94,
... | 5 |
[
[
[
35,
36,
31
],
[
63,
64,
55
],
[
39,
41,
29
],
[
22,
26,
11
],
[
54,
54,
40
],
[
29,
26,
19
],
[
29,
26,
18
],
[
35,
... | 7 |
[
[
[
200,
169,
75
],
[
181,
143,
49
],
[
198,
167,
68
],
[
193,
160,
66
],
[
191,
148,
62
],
[
187,
146,
72
],
[
174,
135,
77
],
[
... | 9 |
Signal-Bench IC Test Set v1
What this is
The CIFAR-10 test set, packaged for use by signal-bench — an open-source benchmarking framework for edge AI hardware. This dataset is the evaluation set used in Phase 5 image-classification benchmarks across the MCU-to-cloud hardware curve.
This is not a new dataset. It is a packaging of CIFAR-10's standard test split with no modification, published in HuggingFace's datasets format for one-line loading.
Source attribution
CIFAR-10 was collected by Alex Krizhevsky, Vinod Nair, and Geoffrey Hinton at the University of Toronto. The original dataset is available at https://www.cs.toronto.edu/~kriz/cifar.html.
Citation:
Krizhevsky, Alex. "Learning multiple layers of features from tiny images." (2009).
Processing
Passthrough. CIFAR-10 test images are stored as-is at 32×32×3 uint8 (RGB). No normalization, no cropping, no augmentation. The reference MLPerf Tiny image classification model (pretrainedResnet_quant.tflite) applies its own normalization internally during inference.
Subset structure
- Samples: 10,000 (full CIFAR-10 test set)
- Classes: 10 (airplane, automobile, bird, cat, deer, dog, frog, horse, ship, truck)
- Class balance: 1,000 per class
- Feature shape: 32×32×3 uint8 RGB
Intended use
Benchmark evaluation for edge AI image classification. Designed to pair with MLPerf Tiny's reference ResNet-8 model.
from datasets import load_dataset
ds = load_dataset("narteybrown/signal-bench-ic-v1")
print(ds) # DatasetDict with single 'train' split (HF convention; semantically a test set)
The split is named train per HuggingFace's default convention for single-split datasets, but it is semantically a test set. Do not use it for model training.
MCU subset
A deterministic 100-sample stratified subset (10 samples per class, seed=42) is committed to the signal-bench repo at data/mcu_subsets/ic/subset_v1.npz for flashing into MCU firmware as C arrays. To regenerate: python scripts/datasets/prepare_ic.py.
Citation
If you use this dataset in published work, cite both the original CIFAR-10 paper and signal-bench:
@misc{signalbench-ic-v1,
author = {Brown, Daniel},
title = {Signal-Bench IC Test Set v1},
year = {2026},
publisher = {Agoo AI},
howpublished = {\url{https://huggingface.co/datasets/narteybrown/signal-bench-ic-v1}},
}
Limitations
CIFAR-10 is a small, well-studied dataset with known limitations: low resolution, limited class diversity, no environmental variation. Benchmark results using this set should be understood as a measurement of inference performance on a standard reference workload, not as evaluation against real-world deployment conditions.
The MCU subset (100 samples) is small enough that per-class accuracy estimates have wide confidence intervals; it is intended for latency and energy measurement, not statistical accuracy reporting.
License
CIFAR-10 is distributed under the terms documented at https://www.cs.toronto.edu/~kriz/cifar.html. This packaging adds no restrictions; users should consult the original license for any redistribution.
- Downloads last month
- 40