Skip to content

Commit 3b670a1

Browse files
author
The TensorFlow Datasets Authors
committed
Merge pull request #5413 from Ekhao:wake_vision
PiperOrigin-RevId: 662828687
2 parents 90c0dc0 + 2716809 commit 3b670a1

16 files changed

+513
-0
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@
197197
'smartwatch_gestures': ['pandas'],
198198
'svhn': ['scipy'],
199199
'the300w_lp': ['scipy'],
200+
'wake_vision': ['pandas'],
200201
'wider_face': ['Pillow'],
201202
'wiki_dialog': ['apache-beam'],
202203
'wikipedia': ['apache-beam', 'mwparserfromhell', 'mwxml'],
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@article{banbury2024wake,
2+
title={Wake Vision: A Large-scale, Diverse Dataset and Benchmark Suite for TinyML Person Detection},
3+
author={Banbury, Colby and Njor, Emil and Stewart, Matthew and Warden, Pete and Kudlur, Manjunath and Jeffries, Nat and Fafoutis, Xenofon and Reddi, Vijay Janapa},
4+
journal={arXiv preprint arXiv:2405.00892},
5+
year={2024}
6+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Wake Vision is a large, high-quality dataset featuring over 6 million images,
2+
significantly exceeding the scale and diversity of current tinyML datasets
3+
(100x). This dataset includes images with annotations of whether each image
4+
contains a person. Additionally, it incorporates a comprehensive fine-grained
5+
benchmark to assess fairness and robustness, covering perceived gender,
6+
perceived age, subject distance, lighting conditions, and depictions. The Wake
7+
Vision labels are derived from Open Image's annotations which are licensed by
8+
Google LLC under CC BY 4.0 license. The images are listed as having a CC BY 2.0
9+
license. Note from Open Images: "while we tried to identify images that are
10+
licensed under a Creative Commons Attribution license, we make no
11+
representations or warranties regarding the license status of each image and you
12+
should verify the license for each image yourself."
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
content.data-type.categorical
2+
content.data-type.image
3+
ml.fairness.age
4+
ml.fairness.facial-attributes
5+
ml.fairness.gender
6+
ml.task.fine-grained-image-classification
7+
ml.task.image-classification
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# coding=utf-8
2+
# Copyright 2024 The TensorFlow Datasets Authors.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+

tensorflow_datasets/datasets/wake_vision/checksums.tsv

Lines changed: 96 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)