Datasets:
Upload folder using huggingface_hub
Browse files- README.md +81 -0
- dataset_info.json +53 -0
- train/data-00000-of-00015.arrow +3 -0
- train/data-00001-of-00015.arrow +3 -0
- train/data-00002-of-00015.arrow +3 -0
- train/data-00003-of-00015.arrow +3 -0
- train/data-00004-of-00015.arrow +3 -0
- train/data-00005-of-00015.arrow +3 -0
- train/data-00006-of-00015.arrow +3 -0
- train/data-00007-of-00015.arrow +3 -0
- train/data-00008-of-00015.arrow +3 -0
- train/data-00009-of-00015.arrow +3 -0
- train/data-00010-of-00015.arrow +3 -0
- train/data-00011-of-00015.arrow +3 -0
- train/data-00012-of-00015.arrow +3 -0
- train/data-00013-of-00015.arrow +3 -0
- train/data-00014-of-00015.arrow +3 -0
- train/dataset_info.json +23 -0
- train/state.json +55 -0
- val/data-00000-of-00002.arrow +3 -0
- val/data-00001-of-00002.arrow +3 -0
- val/dataset_info.json +23 -0
- val/state.json +16 -0
README.md
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- imagenet
|
| 9 |
+
- corruption
|
| 10 |
+
- robustness
|
| 11 |
+
- computer-vision
|
| 12 |
+
- image-classification
|
| 13 |
+
size_categories:
|
| 14 |
+
- 1M<n<10M
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# Corruption Dataset: Glass_Blur
|
| 18 |
+
|
| 19 |
+
## Dataset Description
|
| 20 |
+
|
| 21 |
+
This dataset contains corrupted versions of ImageNet-1K images using **glass_blur** corruption. It is part of the ImageNet-C benchmark for evaluating model robustness to common image corruptions.
|
| 22 |
+
|
| 23 |
+
### Dataset Structure
|
| 24 |
+
|
| 25 |
+
- **Train**: 1,281,167 corrupted images
|
| 26 |
+
- **Validation**: 50,000 corrupted images
|
| 27 |
+
- **Classes**: 1000 ImageNet-1K classes
|
| 28 |
+
- **Format**: Arrow (Hugging Face Datasets)
|
| 29 |
+
|
| 30 |
+
### Corruption Type: Glass_Blur
|
| 31 |
+
|
| 32 |
+
Applies glass blur effect, simulating frosted glass.
|
| 33 |
+
|
| 34 |
+
## Usage
|
| 35 |
+
|
| 36 |
+
```python
|
| 37 |
+
from datasets import load_dataset
|
| 38 |
+
|
| 39 |
+
# Load the dataset
|
| 40 |
+
dataset = load_dataset("MarMaster/corruption-glass_blur")
|
| 41 |
+
|
| 42 |
+
# Access train and validation splits
|
| 43 |
+
train_dataset = dataset["train"]
|
| 44 |
+
val_dataset = dataset["validation"]
|
| 45 |
+
|
| 46 |
+
# Example usage
|
| 47 |
+
for example in train_dataset:
|
| 48 |
+
image = example["image"]
|
| 49 |
+
class_id = example["class_id"]
|
| 50 |
+
filename = example["filename"]
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
## Dataset Statistics
|
| 54 |
+
|
| 55 |
+
- **Total Images**: 1,331,167
|
| 56 |
+
- **Train Images**: 1,281,167
|
| 57 |
+
- **Validation Images**: 50,000
|
| 58 |
+
- **Classes**: 1000
|
| 59 |
+
- **Image Format**: RGB
|
| 60 |
+
- **Average Image Size**: Variable (ImageNet-1K standard)
|
| 61 |
+
|
| 62 |
+
## Citation
|
| 63 |
+
|
| 64 |
+
If you use this dataset, please cite the original ImageNet-C paper:
|
| 65 |
+
|
| 66 |
+
```bibtex
|
| 67 |
+
@article{hendrycks2019benchmarking,
|
| 68 |
+
title={Benchmarking Neural Network Robustness to Common Corruptions and Perturbations},
|
| 69 |
+
author={Hendrycks, Dan and Dietterich, Tom},
|
| 70 |
+
journal={Proceedings of the International Conference on Learning Representations},
|
| 71 |
+
year={2019}
|
| 72 |
+
}
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
## License
|
| 76 |
+
|
| 77 |
+
This dataset is released under the MIT License. The original ImageNet dataset follows its own licensing terms.
|
| 78 |
+
|
| 79 |
+
## Contact
|
| 80 |
+
|
| 81 |
+
For questions or issues, please contact: marcin.osial@[your-institution].edu
|
dataset_info.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_name": "corruption-glass_blur",
|
| 3 |
+
"dataset_version": "1.0.0",
|
| 4 |
+
"description": "ImageNet-Corruption dataset with glass_blur corruption",
|
| 5 |
+
"license": "mit",
|
| 6 |
+
"task_categories": [
|
| 7 |
+
"image-classification"
|
| 8 |
+
],
|
| 9 |
+
"language": [
|
| 10 |
+
"en"
|
| 11 |
+
],
|
| 12 |
+
"tags": [
|
| 13 |
+
"imagenet",
|
| 14 |
+
"corruption",
|
| 15 |
+
"robustness",
|
| 16 |
+
"computer-vision"
|
| 17 |
+
],
|
| 18 |
+
"size_categories": "1M<n<10M",
|
| 19 |
+
"splits": {
|
| 20 |
+
"train": {
|
| 21 |
+
"name": "train",
|
| 22 |
+
"num_bytes": 0,
|
| 23 |
+
"num_examples": 601142
|
| 24 |
+
},
|
| 25 |
+
"validation": {
|
| 26 |
+
"name": "validation",
|
| 27 |
+
"num_bytes": 0,
|
| 28 |
+
"num_examples": 50000
|
| 29 |
+
}
|
| 30 |
+
},
|
| 31 |
+
"features": {
|
| 32 |
+
"image": {
|
| 33 |
+
"dtype": "image",
|
| 34 |
+
"_type": "Image"
|
| 35 |
+
},
|
| 36 |
+
"class_id": {
|
| 37 |
+
"dtype": "string",
|
| 38 |
+
"_type": "Value"
|
| 39 |
+
},
|
| 40 |
+
"split": {
|
| 41 |
+
"dtype": "string",
|
| 42 |
+
"_type": "Value"
|
| 43 |
+
},
|
| 44 |
+
"filename": {
|
| 45 |
+
"dtype": "string",
|
| 46 |
+
"_type": "Value"
|
| 47 |
+
}
|
| 48 |
+
},
|
| 49 |
+
"download_size": 0,
|
| 50 |
+
"dataset_size": 0,
|
| 51 |
+
"created_at": "2025-10-27 23:16:35",
|
| 52 |
+
"corruption_type": "glass_blur"
|
| 53 |
+
}
|
train/data-00000-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:235662b5d9fdcdeb54b4d20bb5e5125f9ad60884971fbf70c797825df805caad
|
| 3 |
+
size 664973168
|
train/data-00001-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5957e01d318a25ed406f6d5e286a7244ffe1b4302d5f880386458430ea955dfa
|
| 3 |
+
size 693482208
|
train/data-00002-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5dc08648c9000720a4a991ba633290afe18b8af79901aef78c017e2b144d3bd7
|
| 3 |
+
size 637324000
|
train/data-00003-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e633cd2144d3ee7faab733691f5c92bd72ca102b017b21c61dae62e7a9cf2c4
|
| 3 |
+
size 616361152
|
train/data-00004-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b825f2cbe58b48d04180bec03c0f4ec2e34ad2fd18465bb7b1946a18a4a109a
|
| 3 |
+
size 549709752
|
train/data-00005-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd90c49aae97922b201e9206c994e1ca5cb049179082b5354ff4aefbfe74c226
|
| 3 |
+
size 721621248
|
train/data-00006-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71db757f050d163f53b61b7414000f5d8d7f75d886e7d925061553d35856fca4
|
| 3 |
+
size 689452584
|
train/data-00007-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a824097161e12b2052378df23e202a47d09bac5628093c143586e55bf400578b
|
| 3 |
+
size 693067640
|
train/data-00008-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f01795f77766572f0cd8273dee29c102f05e2d8feb99581f26bd7d4eaf491d9e
|
| 3 |
+
size 688026072
|
train/data-00009-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c28e9f67f7eaf736b6b08e9262d31a199afcde3a7989eadea0afeafbc83a7c62
|
| 3 |
+
size 551749160
|
train/data-00010-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fdcf0464d2afc73f3550dd85a6d24abbd06bae5274385a0e94f6afa0f00aa5a
|
| 3 |
+
size 601775744
|
train/data-00011-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd6e20c3322f55f0f04cf152632b0d54029f3029c73f11c98983cc0659ee6495
|
| 3 |
+
size 630502688
|
train/data-00012-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e87fee7e693c6ace5222a32d2fe785c2ef7d2d0f5afacdb9e23048300d68e085
|
| 3 |
+
size 512646864
|
train/data-00013-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62d1b49a2bc8a009c0878c236c1cdc809a87044f079363da1bc4c75f63b63c4d
|
| 3 |
+
size 647698520
|
train/data-00014-of-00015.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13bf9fa9d3814c40cd3704a113e62c3d94063a08c38bbf497578cb98a771a549
|
| 3 |
+
size 626288800
|
train/dataset_info.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"corruption_type": "glass_blur",
|
| 3 |
+
"split": "train",
|
| 4 |
+
"num_images": 601142,
|
| 5 |
+
"features": {
|
| 6 |
+
"image": {
|
| 7 |
+
"_type": "Image"
|
| 8 |
+
},
|
| 9 |
+
"class_id": {
|
| 10 |
+
"dtype": "string",
|
| 11 |
+
"_type": "Value"
|
| 12 |
+
},
|
| 13 |
+
"split": {
|
| 14 |
+
"dtype": "string",
|
| 15 |
+
"_type": "Value"
|
| 16 |
+
},
|
| 17 |
+
"filename": {
|
| 18 |
+
"dtype": "string",
|
| 19 |
+
"_type": "Value"
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
"created_at": "2025-10-27 23:13:46"
|
| 23 |
+
}
|
train/state.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "data-00000-of-00015.arrow"
|
| 5 |
+
},
|
| 6 |
+
{
|
| 7 |
+
"filename": "data-00001-of-00015.arrow"
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"filename": "data-00002-of-00015.arrow"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"filename": "data-00003-of-00015.arrow"
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"filename": "data-00004-of-00015.arrow"
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"filename": "data-00005-of-00015.arrow"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"filename": "data-00006-of-00015.arrow"
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"filename": "data-00007-of-00015.arrow"
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"filename": "data-00008-of-00015.arrow"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"filename": "data-00009-of-00015.arrow"
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"filename": "data-00010-of-00015.arrow"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"filename": "data-00011-of-00015.arrow"
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"filename": "data-00012-of-00015.arrow"
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"filename": "data-00013-of-00015.arrow"
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"filename": "data-00014-of-00015.arrow"
|
| 47 |
+
}
|
| 48 |
+
],
|
| 49 |
+
"_fingerprint": "04f1af19d82dcd66",
|
| 50 |
+
"_format_columns": null,
|
| 51 |
+
"_format_kwargs": {},
|
| 52 |
+
"_format_type": null,
|
| 53 |
+
"_output_all_columns": false,
|
| 54 |
+
"_split": null
|
| 55 |
+
}
|
val/data-00000-of-00002.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e41f58a28d3229adb90e77a9e17fa648a91886d70a0a9ee4b30e1b87d9d7d6c7
|
| 3 |
+
size 284220872
|
val/data-00001-of-00002.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3aebcf64d655ab1b39efd569f6fe15d446ac351d9ba02054b4760dfbb58ccf50
|
| 3 |
+
size 283481816
|
val/dataset_info.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"corruption_type": "glass_blur",
|
| 3 |
+
"split": "val",
|
| 4 |
+
"num_images": 50000,
|
| 5 |
+
"features": {
|
| 6 |
+
"image": {
|
| 7 |
+
"_type": "Image"
|
| 8 |
+
},
|
| 9 |
+
"class_id": {
|
| 10 |
+
"dtype": "string",
|
| 11 |
+
"_type": "Value"
|
| 12 |
+
},
|
| 13 |
+
"split": {
|
| 14 |
+
"dtype": "string",
|
| 15 |
+
"_type": "Value"
|
| 16 |
+
},
|
| 17 |
+
"filename": {
|
| 18 |
+
"dtype": "string",
|
| 19 |
+
"_type": "Value"
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
"created_at": "2025-10-27 23:16:35"
|
| 23 |
+
}
|
val/state.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "data-00000-of-00002.arrow"
|
| 5 |
+
},
|
| 6 |
+
{
|
| 7 |
+
"filename": "data-00001-of-00002.arrow"
|
| 8 |
+
}
|
| 9 |
+
],
|
| 10 |
+
"_fingerprint": "6993467d4d1936cf",
|
| 11 |
+
"_format_columns": null,
|
| 12 |
+
"_format_kwargs": {},
|
| 13 |
+
"_format_type": null,
|
| 14 |
+
"_output_all_columns": false,
|
| 15 |
+
"_split": null
|
| 16 |
+
}
|