image
imagewidth (px)
1.11k
1.11k
label
class label
250 classes
73ear
46carrot
111human-skeleton
95guitar
74elephant
71dragon
21bicycle
85flower with stem
81fire hydrant
60crab
198speed-boat
2angel
6armchair
132moon
166rabbit
134motorbike
211swan
10banana
118ladder
131monkey
64cup
249zebra
180scorpion
95guitar
140octopus
175santa claus
232tree
240vase
88foot
157pineapple
5arm
226tomato
227tooth
35butterfly
217teacup
48cat
175santa claus
2angel
189skateboard
234trousers
167race car
31bridge
203standing bird
62crocodile
207submarine
243wheel
1alarm clock
137mug
131monkey
188shovel
136mouth
231train
150penguin
230traffic light
245windmill
206streetlight
114kangaroo
187shoe
59cow
21bicycle
3ant
169rainbow
105helmet
16bed
180scorpion
188shovel
242walkie talkie
86flying bird
105helmet
57computer-mouse
49cell phone
89fork
248wrist-watch
110house
11barn
3ant
238umbrella
198speed-boat
113ipod
31bridge
248wrist-watch
17bee
248wrist-watch
50chair
79fan
100hat
182sea turtle
25bookshelf
97hammer
247wineglass
141owl
49cell phone
122lighter
205strawberry
36cabinet
202squirrel
35butterfly
103hedgehog
12baseball bat
33bus

Dataset Card for TU Berline Dataset

This dataset card aims to provide comprehensive information about the TU Berlin dataset, a collection of hand-drawn sketches used for training and evaluating sketch classification models.

Dataset Details

Dataset Description

The TU Berlin dataset is a large-scale collection of hand-drawn sketches curated by the research team at TU Berlin. The dataset includes 20,000 unique sketches across 250 object categories, contributed by participants from around the world. The primary purpose of this dataset is to facilitate research in the field of computer vision, particularly for tasks related to sketch recognition and classification.

  • Curated by: TU Berlin research team
  • Shared by [optional]: TU Berlin

Dataset Sources

Uses

Direct Use

The dataset is intended for use in developing and evaluating sketch recognition algorithms. It is suitable for tasks such as:

  • Training sketch classification models
  • Evaluating the performance of sketch recognition systems
  • Conducting research in computer vision and machine learning related to hand-drawn images

Out-of-Scope Use

The dataset is not suitable for use cases that require high-resolution images or photographs. It is also not intended for tasks unrelated to sketch recognition, such as natural image classification.

Dataset Structure

The dataset is organized into categories, each containing a collection of hand-drawn sketches. Each sketch is a black-and-white image representing an object from one of the predefined categories.

  • Number of Categories: 250
  • Number of Sketches: 20,000

Dataset Splits

I downloaded the TU Berlin dataset and split it into train set, validation set, and test set.

  • Train Set:
    • Number of Examples: 16,000
    • Size: 480,609,419 bytes
  • Validation Set:
    • Number of Examples: 2,000
    • Size: 59,693,656 bytes
  • Test Set:
    • Number of Examples: 2,000
    • Size: 60,354,461 bytes
  • Download Size: 589,085,954 bytes
  • Total Dataset Size: 600,657,536 bytes

The data was split using the following code:

from sklearn.model_selection import train_test_split

train_data, temp_data = train_test_split(metadata, test_size=0.2, random_state=42)
val_data, test_data = train_test_split(temp_data, test_size=0.5, random_state=42)

Citation

BibTeX:

@article{eitz2012hdhso,
author={Eitz, Mathias and Hays, James and Alexa, Marc},
title={How Do Humans Sketch Objects?},
journal={ACM Trans. Graph. (Proc. SIGGRAPH)},
year={2012},
volume={31},
number={4},
pages = {44:1--44:10}
}
Downloads last month
2
Edit dataset card