ianisdev commited on
Commit
8c68e26
Β·
verified Β·
1 Parent(s): e4b00ad

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +123 -0
README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language: []
4
+ pretty_name: Augmented ImageNet Subset for Classification
5
+ dataset_type: image-classification
6
+ task_categories:
7
+ - image-classification
8
+ size_categories:
9
+ - 1M<n<10M
10
+ ---
11
+
12
+ # Dataset Card for imagenet\_augmented
13
+
14
+ This dataset provides an **augmented version of a subset of ImageNet**, used to benchmark how classical and synthetic augmentations impact large-scale image classification models.
15
+
16
+ All training data is organized by augmentation method, and the `test/` set remains clean and unmodified. The dataset is compressed in `.zip` format and must be **unzipped before use**.
17
+
18
+ ## πŸ“₯ Download & Extract
19
+
20
+ ```bash
21
+ wget https://huggingface.co/datasets/ianisdev/imagenet_augmented/resolve/main/imagenet.zip
22
+ unzip imagenet.zip
23
+ ```
24
+
25
+ ## πŸ“ Dataset Structure
26
+
27
+ ```bash
28
+ imagenet/
29
+ β”œβ”€β”€ test/ # Clean test images (unaltered)
30
+ └── train/
31
+ β”œβ”€β”€ traditional/ # Color jitter, rotation, flip
32
+ β”œβ”€β”€ mixup/ # Interpolated image pairs
33
+ β”œβ”€β”€ miamix/ # Color-affine blend
34
+ β”œβ”€β”€ auto/ # AutoAugment (torchvision)
35
+ β”œβ”€β”€ lsb/ # LSB-level bit noise
36
+ β”œβ”€β”€ gan/ # BigGAN class-conditional samples
37
+ β”œβ”€β”€ vqvae/ # VQ-VAE reconstructions
38
+ └── fusion/ # Pairwise blended jittered samples
39
+ ```
40
+
41
+ Each folder uses `ImageFolder` format:
42
+
43
+ ```
44
+ train/{augmentation}/{imagenet_class}/image.jpg
45
+ test/{imagenet_class}/image.jpg
46
+ ```
47
+
48
+ ## Dataset Details
49
+
50
+ ### Dataset Description
51
+
52
+ * **Curated by:** Muhammad Anis Ur Rahman (`@ianisdev`)
53
+ * **License:** MIT
54
+ * **Language(s):** Not applicable (visual only)
55
+
56
+ ### Dataset Sources
57
+
58
+ * **Base Dataset:** [ImageNet Subset (Tiny or 1K)](https://image-net.org/)
59
+ * **VQ-VAE Model:** [ianisdev/imagenet\_vqvae](https://huggingface.co/ianisdev/imagenet_vqvae) *(if available)*
60
+
61
+ ## Uses
62
+
63
+ ### Direct Use
64
+
65
+ * Large-scale model training with controlled augmentation types
66
+ * Evaluating deep learning robustness at ImageNet-level complexity
67
+
68
+ ### Out-of-Scope Use
69
+
70
+ * Not designed for exact ImageNet benchmarking (subset only)
71
+ * Not recommended for production model training without validation on original ImageNet
72
+
73
+ ## Dataset Creation
74
+
75
+ ### Curation Rationale
76
+
77
+ To study how augmentation types affect generalization in large, fine-grained image classification tasks.
78
+
79
+ ### Source Data
80
+
81
+ A compressed ImageNet subset was augmented using multiple synthetic and classical pipelines.
82
+
83
+ #### Data Collection and Processing
84
+
85
+ * **Traditional**: Flip, rotate, color jitter
86
+ * **Auto**: AutoAugment (ImageNet policy)
87
+ * **Mixup, MIA Mix, Fusion**: Pairwise augmentations with affine/jitter
88
+ * **GAN**: Used pretrained [BigGAN-deep-256](https://huggingface.co/biggan-deep-256)
89
+ * **VQ-VAE**: Reconstructed using a trained encoder-decoder model
90
+
91
+ #### Who are the source data producers?
92
+
93
+ Original ImageNet images are from the official [ILSVRC](https://image-net.org/challenges/LSVRC) dataset. Augmented samples were generated by Muhammad Anis Ur Rahman.
94
+
95
+ ## Bias, Risks, and Limitations
96
+
97
+ * Some classes may contain visually distorted samples
98
+ * GAN/VQ-VAE samples can introduce low-fidelity noise
99
+ * Dataset may not reflect full ImageNet diversity
100
+
101
+ ### Recommendations
102
+
103
+ * Use `test/` set for consistent evaluation
104
+ * Measure class-level confusion and error propagation
105
+ * Evaluate robustness to real-world samples
106
+
107
+ ## Citation
108
+
109
+ **BibTeX:**
110
+
111
+ ```bash
112
+ @misc{rahman2025imagenetaug,
113
+ author = {Muhammad Anis Ur Rahman},
114
+ title = {Augmented ImageNet Dataset for Image Classification},
115
+ year = {2025},
116
+ url = {https://huggingface.co/datasets/ianisdev/imagenet_augmented}
117
+ }
118
+ ```
119
+
120
+ **APA:**
121
+
122
+ Rahman, M. A. U. (2025). *Augmented ImageNet Dataset for Image Classification*. Hugging Face. [https://huggingface.co/datasets/ianisdev/imagenet\_augmented](https://huggingface.co/datasets/ianisdev/imagenet_augmented)
123
+