Datasets:

Modalities:
Image
Formats:
parquet
Languages:
English
Size:
< 1K
DOI:
Libraries:
Datasets
pandas
License:
Sneider-Exe commited on
Commit
85f1936
1 Parent(s): 9c34397

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +148 -12
README.md CHANGED
@@ -1,5 +1,15 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  dataset_info:
 
3
  features:
4
  - name: image
5
  dtype: image
@@ -14,18 +24,144 @@ dataset_info:
14
  '4': Wood
15
  splits:
16
  - name: train
17
- num_bytes: 16618897.4
18
  num_examples: 120
19
  - name: test
20
- num_bytes: 4154725.6
21
- num_examples: 30
22
- download_size: 20778905
23
- dataset_size: 20773623.0
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
- - split: test
30
- path: data/test-*
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ task_categories:
3
+ - image-classification
4
+ language:
5
+ - en
6
+ tags:
7
+ - Images
8
+ pretty_name: 'Material Classification Hands On '
9
+ size_categories:
10
+ - n<1K
11
  dataset_info:
12
+ config_name: plain_text
13
  features:
14
  - name: image
15
  dtype: image
 
24
  '4': Wood
25
  splits:
26
  - name: train
 
27
  num_examples: 120
28
  - name: test
29
+ num_examples: 30¿
 
 
 
 
 
 
 
 
 
 
30
  ---
31
+ # Dataset Card for Material Classification
32
+
33
+ ## Table of Contents
34
+ - [Dataset Description](#dataset-description)
35
+ - [Dataset Summary](#dataset-summary)
36
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
37
+ - [Languages](#languages)
38
+ - [Dataset Structure](#dataset-structure)
39
+ - [Data Instances](#data-instances)
40
+ - [Data Fields](#data-fields)
41
+ - [Data Splits](#data-splits)
42
+ - [Dataset Creation](#dataset-creation)
43
+ - [Curation Rationale](#curation-rationale)
44
+ - [Source Data](#source-data)
45
+ - [Annotations](#annotations)
46
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
47
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
48
+ - [Social Impact of Dataset](#social-impact-of-dataset)
49
+ - [Discussion of Biases](#discussion-of-biases)
50
+ - [Other Known Limitations](#other-known-limitations)
51
+ - [Additional Information](#additional-information)
52
+ - [Dataset Curators](#dataset-curators)
53
+ - [Licensing Information](#licensing-information)
54
+ - [Citation Information](#citation-information)
55
+ - [Contributions](#contributions)
56
+
57
+ ## Dataset Description
58
+
59
+ - **Homepage:** https://semillerocv.github.io/proyectos.html
60
+ - **Repository:**
61
+ - **Paper:**
62
+ - **Leaderboard:**
63
+ - **Point of Contact:**
64
+
65
+ ### Dataset Summary
66
+
67
+ The Material_classification_2U dataset consists of 150 256x256 colour images in 5 classes, with 30 images per class. There are 120 training images and 30 test images.
68
+
69
+ ### Supported Tasks and Leaderboards
70
+
71
+ - `image-classification`: The goal of this task is to classify a given image into one of 5 classes.
72
+
73
+ ### Languages
74
+
75
+ English
76
+
77
+ ## Dataset Structure
78
+
79
+ ### Data Instances
80
+
81
+ A sample from the training set is provided below:
82
+
83
+ ```
84
+ {
85
+ 'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=256x256>,
86
+ 'label': 1
87
+ }
88
+ ```
89
+
90
+ ### Data Fields
91
+
92
+ - image: A `PIL.Image.Image` object containing the 256x256 image. Note that when accessing the image column: `dataset['train']["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time.
93
+ - label: 0-4 with the following correspondence
94
+ '0': Brick
95
+ '1': Metal
96
+ '2': Paper
97
+ '3': Plastic
98
+ '4': Wood
99
+
100
+ ### Data Splits
101
+
102
+ Train and Test
103
+
104
+ ## Dataset Creation
105
+
106
+ ### Curation Rationale
107
+
108
+ [More Information Needed]
109
+
110
+ ### Source Data
111
+
112
+ #### Initial Data Collection and Normalization
113
+
114
+ [More Information Needed]
115
+
116
+ #### Who are the source language producers?
117
+
118
+ [More Information Needed]
119
+
120
+ ### Annotations
121
+
122
+ #### Annotation process
123
+
124
+ [More Information Needed]
125
+
126
+ #### Who are the annotators?
127
+
128
+ [More Information Needed]
129
+
130
+ ### Personal and Sensitive Information
131
+
132
+ [More Information Needed]
133
+
134
+ ## Considerations for Using the Data
135
+
136
+ ### Social Impact of Dataset
137
+
138
+ [More Information Needed]
139
+
140
+ ### Discussion of Biases
141
+
142
+ [More Information Needed]
143
+
144
+ ### Other Known Limitations
145
+
146
+ [More Information Needed]
147
+
148
+ ## Additional Information
149
+
150
+ ### Dataset Curators
151
+
152
+ [More Information Needed]
153
+
154
+ ### Licensing Information
155
+
156
+ [More Information Needed]
157
+
158
+ ### Citation Information
159
+
160
+ ```
161
+ @TECHREPORT{
162
+ author = {Brayan Sneider Sánchez, Dana Meliza Villamizar, Cesar Vanegas, Juan Jose Calderón},
163
+ title = {Material Classification},
164
+ institution = {Universidad Industrial de Santander},
165
+ year = {2024}
166
+ }
167
+ ```