Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- object-detection
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
size_categories:
|
8 |
+
- 1K<n<10K
|
9 |
+
---
|
10 |
+
# Dataset Card for Dataset VOC2007Augs
|
11 |
+
|
12 |
+
## Dataset Details
|
13 |
+
|
14 |
+
### Dataset Description
|
15 |
+
|
16 |
+
VOC2007Augs is a dataset containing augmented images from the VOC2007 dataset, specifically focused on two object classes: cats and potted plants. The dataset is structured in the VOC2007 format, with two separate folders, `CatAugs` and `PottedPlantAugs`, each containing a VOC2007-style directory structure.
|
17 |
+
|
18 |
+
## Uses
|
19 |
+
|
20 |
+
This dataset is suitable for use in object detection and image classification tasks, particularly those focused on the cat and potted plant object classes. The augmented images can be used to improve model robustness and performance on these tasks.
|
21 |
+
|
22 |
+
## Dataset Structure
|
23 |
+
|
24 |
+
```shell
|
25 |
+
VOC2007Augs
|
26 |
+
βββ CatAugs
|
27 |
+
β βββ Annotations
|
28 |
+
β βββ JPEGImages
|
29 |
+
β βββ ImageSets
|
30 |
+
β βββ Prompts
|
31 |
+
βββ PottedPlantAugs
|
32 |
+
βββ Annotations
|
33 |
+
βββ JPEGImages
|
34 |
+
βββ ImageSets
|
35 |
+
βββ Prompts
|
36 |
+
```
|
37 |
+
|
38 |
+
### Dataset Contents:
|
39 |
+
The dataset contains images, split between the `CatAugs` and `PottedPlantAugs` folders. Each folder contains a VOC2007-style directory structure, with the following contents:
|
40 |
+
|
41 |
+
* `Annotations`: XML annotation files for each image, containing bounding box and object class information.
|
42 |
+
* `JPEGImages`: The augmented images themselves, in JPEG format.
|
43 |
+
* `ImageSets`: Text files containing lists of image IDs for training, validation, and testing splits.
|
44 |
+
* `Prompts`: Text files containing the prompts used to generate each augmented image.
|
45 |
+
|
46 |
+
### Dataset Format:
|
47 |
+
The dataset is stored in the VOC2007 format, with XML annotation files and JPEG images.
|