Datasets:

Modalities:
Image
Languages:
English
Libraries:
Datasets
License:
yifan-Eva commited on
Commit
92f4962
·
verified ·
1 Parent(s): d367ae9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -70
README.md CHANGED
@@ -43,7 +43,78 @@ The dataset is divided into several subsets based on the distribution of object
43
  | Hom. | 490 | 289 | 201 |
44
  | Adv. | 334 | 170 | 164 |
45
 
46
- ## Dataset Structure
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
  <!-- Provide a longer summary of what this dataset is. -->
49
 
@@ -175,76 +246,7 @@ The dataset is divided into several subsets based on the distribution of object
175
  }
176
 
177
  ```
178
- ## Dataset File Structure
179
- The `ROPE` dataset is structured into training and validation directories, each containing images divided by their object class distributions. Each image directory includes visualizations of bounding boxes (`bbox`) and raw images (`raw`), further categorized into `ADE` and `COCO` sources. The `raw` directory contains the original images, while the `bbox` directory contains the same images with bounding boxes visualized on them.
180
-
181
-
182
-
183
- ```arduino
184
- ROPE/
185
-
186
- ├── train/
187
- │ ├── image/
188
- │ │ ├── AAAAB-images/
189
- │ │ │ ├── bbox/
190
- │ │ │ │ ├── ADE/
191
- │ │ │ │ ├── COCO/
192
- │ │ │ ├── raw/
193
- │ │ │ │ ├── ADE/
194
- │ │ │ │ ├── COCO/
195
- │ │ ├── BAAAA-images/
196
- │ │ │ ├── bbox/
197
- │ │ │ │ ├── ADE/
198
- │ │ │ │ ├── COCO/
199
- │ │ │ ├── raw/
200
- │ │ │ │ ├── ADE/
201
- │ │ │ │ ├── COCO/
202
- │ │ ├── heterogenous-images/
203
- │ │ │ ├── bbox/
204
- │ │ │ │ ├── ADE/
205
- │ │ │ │ ├── COCO/
206
- │ │ │ ├── raw/
207
- │ │ │ │ ├── ADE/
208
- │ │ │ │ ├── COCO/
209
- │ │ ├── homogenous-images/
210
- │ │ │ ├── bbox/
211
- │ │ │ │ ├── ADE/
212
- │ │ │ │ ├── COCO/
213
- │ │ │ ├── raw/
214
- │ │ │ │ ├── ADE/
215
- │ │ │ │ ├── COCO/
216
- │ │ ├── mixed-images/
217
- │ │ │ ├── bbox/
218
- │ │ │ │ ├── ADE/
219
- │ │ │ │ ├── COCO/
220
- │ │ │ ├── raw/
221
- │ │ │ │ ├── ADE/
222
- │ │ │ │ ├── COCO/
223
- │ ├── AAAAB_data.json
224
- │ ├── BAAAA_data.json
225
- │ ├── merged_heterogenous_data.json
226
- │ ├── merged_homogenous_data.json
227
- │ ├── merged_mixed_data.json
228
-
229
- ├── validation/ #similar to train part
230
- │ ├── image/
231
- │ │ ├── AAAAB-images/
232
- │ │ ├── BAAAA-images/
233
- │ │ ├── heterogenous-images/
234
- │ │ ├── homogenous-images/
235
- │ │ ├── mixed-images/
236
- │ ├── AAAAB_data.json
237
- │ ├── BAAAA_data.json
238
- │ ├── merged_heterogenous_data.json
239
- │ ├── merged_homogenous_data.json
240
- │ ├── merged_mixed_data.json
241
-
242
- ├── .gitattributes
243
- ├── README.md
244
- ├── train.zip
245
- ├── validation.zip
246
 
247
- ```
248
 
249
  ## Dataset Construction
250
 
 
43
  | Hom. | 490 | 289 | 201 |
44
  | Adv. | 334 | 170 | 164 |
45
 
46
+ ## Dataset File Structure
47
+ The `ROPE` dataset is structured into training and validation directories, each containing images divided by their object class distributions. Each image directory includes visualizations of bounding boxes (`bbox`) and raw images (`raw`), further categorized into `ADE` and `COCO` sources. The `raw` directory contains the original images, while the `bbox` directory contains the same images with bounding boxes visualized on them.
48
+
49
+
50
+
51
+ ```arduino
52
+ ROPE/
53
+
54
+ ├── train/
55
+ │ ├── image/
56
+ │ │ ├── AAAAB-images/
57
+ │ │ │ ├── bbox/
58
+ │ │ │ │ ├── ADE/
59
+ │ │ │ │ ├── COCO/
60
+ │ │ │ ├── raw/
61
+ │ │ │ │ ├── ADE/
62
+ │ │ │ │ ├── COCO/
63
+ │ │ ├── BAAAA-images/
64
+ │ │ │ ├── bbox/
65
+ │ │ │ │ ├── ADE/
66
+ │ │ │ │ ├── COCO/
67
+ │ │ │ ├── raw/
68
+ │ │ │ │ ├── ADE/
69
+ │ │ │ │ ├── COCO/
70
+ │ │ ├── heterogenous-images/
71
+ │ │ │ ├── bbox/
72
+ │ │ │ │ ├── ADE/
73
+ │ │ │ │ ├── COCO/
74
+ │ │ │ ├── raw/
75
+ │ │ │ │ ├── ADE/
76
+ │ │ │ │ ├── COCO/
77
+ │ │ ├── homogenous-images/
78
+ │ │ │ ├── bbox/
79
+ │ │ │ │ ├── ADE/
80
+ │ │ │ │ ├── COCO/
81
+ │ │ │ ├── raw/
82
+ │ │ │ │ ├── ADE/
83
+ │ │ │ │ ├── COCO/
84
+ │ │ ├── mixed-images/
85
+ │ │ │ ├── bbox/
86
+ │ │ │ │ ├── ADE/
87
+ │ │ │ │ ├── COCO/
88
+ │ │ │ ├── raw/
89
+ │ │ │ │ ├── ADE/
90
+ │ │ │ │ ├── COCO/
91
+ │ ├── AAAAB_data.json
92
+ │ ├── BAAAA_data.json
93
+ │ ├── merged_heterogenous_data.json
94
+ │ ├── merged_homogenous_data.json
95
+ │ ├── merged_mixed_data.json
96
+
97
+ ├── validation/ #similar to train part
98
+ │ ├── image/
99
+ │ │ ├── AAAAB-images/
100
+ │ │ ├── BAAAA-images/
101
+ │ │ ├── heterogenous-images/
102
+ │ │ ├── homogenous-images/
103
+ │ │ ├── mixed-images/
104
+ │ ├── AAAAB_data.json
105
+ │ ├── BAAAA_data.json
106
+ │ ├── merged_heterogenous_data.json
107
+ │ ├── merged_homogenous_data.json
108
+ │ ├── merged_mixed_data.json
109
+
110
+ ├── .gitattributes
111
+ ├── README.md
112
+ ├── train.zip
113
+ ├── validation.zip
114
+
115
+ ```
116
+
117
+ ## Json file Structure
118
 
119
  <!-- Provide a longer summary of what this dataset is. -->
120
 
 
246
  }
247
 
248
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
 
 
250
 
251
  ## Dataset Construction
252