Datasets:

Size Categories:
10K<n<100K
ArXiv:
Tags:
License:
cgarciae commited on
Commit
60f2d7a
1 Parent(s): 9467ecf

add sample image

Browse files
Files changed (2) hide show
  1. README.md +114 -0
  2. sample.png +0 -0
README.md CHANGED
@@ -1,3 +1,117 @@
1
  ---
 
 
 
 
 
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: Cartoon Set
3
+ size_categories:
4
+ - 10K<n<100K
5
+ task_categories:
6
+ - image-classification
7
  license: cc-by-4.0
8
  ---
9
+ # Dataset Card for Cartoon Set
10
+ ## Table of Contents
11
+ - [Dataset Card for Cartoon Set](#dataset-card-for-cartoon-set)
12
+ - [Table of Contents](#table-of-contents)
13
+ - [Dataset Description](#dataset-description)
14
+ - [Dataset Summary](#dataset-summary)
15
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
16
+ - [Languages](#languages)
17
+ - [Dataset Structure](#dataset-structure)
18
+ - [Data Instances](#data-instances)
19
+ - [Data Fields](#data-fields)
20
+ - [Data Splits](#data-splits)
21
+ - [Dataset Creation](#dataset-creation)
22
+ - [Curation Rationale](#curation-rationale)
23
+ - [Source Data](#source-data)
24
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
25
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
26
+ - [Annotations](#annotations)
27
+ - [Annotation process](#annotation-process)
28
+ - [Who are the annotators?](#who-are-the-annotators)
29
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
30
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
31
+ - [Social Impact of Dataset](#social-impact-of-dataset)
32
+ - [Discussion of Biases](#discussion-of-biases)
33
+ - [Other Known Limitations](#other-known-limitations)
34
+ - [Additional Information](#additional-information)
35
+ - [Dataset Curators](#dataset-curators)
36
+ - [Licensing Information](#licensing-information)
37
+ - [Citation Information](#citation-information)
38
+ - [Contributions](#contributions)
39
+ ## Dataset Description
40
+ - **Homepage:** https://google.github.io/cartoonset/
41
+ - **Repository:**
42
+ - **Paper:** XGAN: Unsupervised Image-to-Image Translation for Many-to-Many Mappings
43
+ - **Leaderboard:**
44
+ - **Point of Contact:**
45
+ ### Dataset Summary
46
+
47
+ ![Cartoon Set sample image](sample.png)
48
+
49
+ Cartoon Set is a collection of random, 2D cartoon avatar images. The cartoons vary in 10 artwork categories, 4 color categories, and 4 proportion categories, with a total of ~1013 possible combinations. We provide sets of 10k and 100k randomly chosen cartoons and labeled attributes.
50
+
51
+ ### Supported Tasks and Leaderboards
52
+ - `image-classification`: The goal of this task is to classify a given image into one of 10 classes. The leaderboard is available [here](https://paperswithcode.com/sota/image-classification-on-Cartoon Set).
53
+ ### Languages
54
+ English
55
+ ## Dataset Structure
56
+ ### Data Instances
57
+ A sample from the training set is provided below:
58
+ ```
59
+ {
60
+ 'img': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=32x32 at 0x201FA6EE748>,
61
+ 'label': 0
62
+ }
63
+ ```
64
+ ### Data Fields
65
+ - img: A `PIL.Image.Image` object containing the 32x32 image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
66
+ - label: 0-9 with the following correspondence
67
+ 0 airplane
68
+ 1 automobile
69
+ 2 bird
70
+ 3 cat
71
+ 4 deer
72
+ 5 dog
73
+ 6 frog
74
+ 7 horse
75
+ 8 ship
76
+ 9 truck
77
+ ### Data Splits
78
+ Train and Test
79
+ ## Dataset Creation
80
+ ### Curation Rationale
81
+ [More Information Needed]
82
+ ### Source Data
83
+ #### Initial Data Collection and Normalization
84
+ [More Information Needed]
85
+ #### Who are the source language producers?
86
+ [More Information Needed]
87
+ ### Annotations
88
+ #### Annotation process
89
+ [More Information Needed]
90
+ #### Who are the annotators?
91
+ [More Information Needed]
92
+ ### Personal and Sensitive Information
93
+ [More Information Needed]
94
+ ## Considerations for Using the Data
95
+ ### Social Impact of Dataset
96
+ [More Information Needed]
97
+ ### Discussion of Biases
98
+ [More Information Needed]
99
+ ### Other Known Limitations
100
+ [More Information Needed]
101
+ ## Additional Information
102
+ ### Dataset Curators
103
+ [More Information Needed]
104
+ ### Licensing Information
105
+ [More Information Needed]
106
+ ### Citation Information
107
+ ```
108
+ @TECHREPORT{Krizhevsky09learningmultiple,
109
+ author = {Alex Krizhevsky},
110
+ title = {Learning multiple layers of features from tiny images},
111
+ institution = {},
112
+ year = {2009}
113
+ }
114
+ ```
115
+ ### Contributions
116
+
117
+ Thanks to [@czabo](https://github.com/czabo) for adding this dataset.
sample.png ADDED