Datasets:
Upload folder using huggingface_hub
Browse files- README.md +81 -0
- dataset_info.json +53 -0
- train/data-00000-of-00021.arrow +3 -0
- train/data-00001-of-00021.arrow +3 -0
- train/data-00002-of-00021.arrow +3 -0
- train/data-00003-of-00021.arrow +3 -0
- train/data-00004-of-00021.arrow +3 -0
- train/data-00005-of-00021.arrow +3 -0
- train/data-00006-of-00021.arrow +3 -0
- train/data-00007-of-00021.arrow +3 -0
- train/data-00008-of-00021.arrow +3 -0
- train/data-00009-of-00021.arrow +3 -0
- train/data-00010-of-00021.arrow +3 -0
- train/data-00011-of-00021.arrow +3 -0
- train/data-00012-of-00021.arrow +3 -0
- train/data-00013-of-00021.arrow +3 -0
- train/data-00014-of-00021.arrow +3 -0
- train/data-00015-of-00021.arrow +3 -0
- train/data-00016-of-00021.arrow +3 -0
- train/data-00017-of-00021.arrow +3 -0
- train/data-00018-of-00021.arrow +3 -0
- train/data-00019-of-00021.arrow +3 -0
- train/data-00020-of-00021.arrow +3 -0
- train/dataset_info.json +23 -0
- train/state.json +73 -0
- val/data-00000-of-00001.arrow +3 -0
- val/dataset_info.json +23 -0
- val/state.json +13 -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: Gaussian_Blur
|
| 18 |
+
|
| 19 |
+
## Dataset Description
|
| 20 |
+
|
| 21 |
+
This dataset contains corrupted versions of ImageNet-1K images using **gaussian_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: Gaussian_Blur
|
| 31 |
+
|
| 32 |
+
Applies Gaussian blur, simulating out-of-focus images.
|
| 33 |
+
|
| 34 |
+
## Usage
|
| 35 |
+
|
| 36 |
+
```python
|
| 37 |
+
from datasets import load_dataset
|
| 38 |
+
|
| 39 |
+
# Load the dataset
|
| 40 |
+
dataset = load_dataset("MarMaster/corruption-gaussian_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-gaussian_blur",
|
| 3 |
+
"dataset_version": "1.0.0",
|
| 4 |
+
"description": "ImageNet-Corruption dataset with gaussian_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": 1281167
|
| 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 13:49:59",
|
| 52 |
+
"corruption_type": "gaussian_blur"
|
| 53 |
+
}
|
train/data-00000-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:892829d083d1b49f8f8810bdc0ef23de546410edc44c8bb3cb612b13a1ef2de3
|
| 3 |
+
size 488008736
|
train/data-00001-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1433edc2fd1658f125ca6ecf1dc10e43f2db246d7ffc7465527c7e6978415add
|
| 3 |
+
size 494261504
|
train/data-00002-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d7ab378daa512b05b746d65c300402fcb047017b27c6b6de4999e74182e4157
|
| 3 |
+
size 494061272
|
train/data-00003-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5087a05e1f19088f1f989b4c54a7228fe389895f997dfc104a2ec3bf78576e3
|
| 3 |
+
size 499719096
|
train/data-00004-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d8e2665db3e23131980e1e516fd9e135b098e4db7031c1da7976d6fe20db77f
|
| 3 |
+
size 492754320
|
train/data-00005-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e90c3e46de6d6eb234829adc36ea8e2846f83441a211adb5fd1da305fd4941e
|
| 3 |
+
size 496094392
|
train/data-00006-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f3969b2ecba4d235cc0765d7d2299f25f692978f744924de2af74e9d494f657
|
| 3 |
+
size 487549248
|
train/data-00007-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8506625a18d46691ce2c777a6e6d13d4785e53878408c5e5d0198fd813803c14
|
| 3 |
+
size 495458752
|
train/data-00008-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94630f7cc0eff790260a068b2e17265b92fc8e32b0d204d85ed7015ecc6f6377
|
| 3 |
+
size 484421352
|
train/data-00009-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd720b03eefcba58f55cd50ffed5a798125339a2dbeba4249abceb7484c19b6b
|
| 3 |
+
size 489948688
|
train/data-00010-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:563a5ac66948cf074877ad0d6a2a112bbd61a27b50305d271203cf5ceb6b48ea
|
| 3 |
+
size 489691320
|
train/data-00011-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5ed74291ffcdb10359d587605a3206245564c6cfed631a2be289f8d94bcb62e
|
| 3 |
+
size 493267784
|
train/data-00012-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:602f87fcc0767dcf480ab7e3909178b8229684ddc890179e090a1b1307eb6aeb
|
| 3 |
+
size 494590376
|
train/data-00013-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a35883c2ac4d32a404a17ebbdfa1fc8d003803488cb29149d5e211bb6819a4b0
|
| 3 |
+
size 493140312
|
train/data-00014-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56986b6e4f9c3bc1796e03c9a24c65e7dc30ea0306854354b94c6d4eae0d5e0e
|
| 3 |
+
size 486344768
|
train/data-00015-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0baedc26c50b45f15652cd68744a8925cb1568fe5a9d87d0a7ad1758cd264013
|
| 3 |
+
size 489123416
|
train/data-00016-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7529b5700ccf153ff1e0abdd2e3071e8bea7a3f99bc9fc95ca4d826c1c099a18
|
| 3 |
+
size 493157720
|
train/data-00017-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af8bac8ff457e7325739cab25ae3ef4bd5c6a9d4d74c94e99c2f47a877e706fd
|
| 3 |
+
size 488001344
|
train/data-00018-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a58c6d140ff9fac8397500610b2f8b8ba30d7c08300a589e20ac24abf5a23e0d
|
| 3 |
+
size 491886272
|
train/data-00019-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:355e8fd24422edb4e32e0c47ac71b528c6c1735217a58933bc78bede7a5f1e71
|
| 3 |
+
size 491880336
|
train/data-00020-of-00021.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06a7262b70b6d2b619e1d7c4254725f6ddd4b80a69cc9c137168070e6c34a999
|
| 3 |
+
size 491878520
|
train/dataset_info.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"corruption_type": "gaussian_blur",
|
| 3 |
+
"split": "train",
|
| 4 |
+
"num_images": 1281167,
|
| 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 13:49:30"
|
| 23 |
+
}
|
train/state.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "data-00000-of-00021.arrow"
|
| 5 |
+
},
|
| 6 |
+
{
|
| 7 |
+
"filename": "data-00001-of-00021.arrow"
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"filename": "data-00002-of-00021.arrow"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"filename": "data-00003-of-00021.arrow"
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"filename": "data-00004-of-00021.arrow"
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"filename": "data-00005-of-00021.arrow"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"filename": "data-00006-of-00021.arrow"
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"filename": "data-00007-of-00021.arrow"
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"filename": "data-00008-of-00021.arrow"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"filename": "data-00009-of-00021.arrow"
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"filename": "data-00010-of-00021.arrow"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"filename": "data-00011-of-00021.arrow"
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"filename": "data-00012-of-00021.arrow"
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"filename": "data-00013-of-00021.arrow"
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"filename": "data-00014-of-00021.arrow"
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"filename": "data-00015-of-00021.arrow"
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"filename": "data-00016-of-00021.arrow"
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"filename": "data-00017-of-00021.arrow"
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"filename": "data-00018-of-00021.arrow"
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"filename": "data-00019-of-00021.arrow"
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"filename": "data-00020-of-00021.arrow"
|
| 65 |
+
}
|
| 66 |
+
],
|
| 67 |
+
"_fingerprint": "b3a2cbb893fdfd35",
|
| 68 |
+
"_format_columns": null,
|
| 69 |
+
"_format_kwargs": {},
|
| 70 |
+
"_format_type": null,
|
| 71 |
+
"_output_all_columns": false,
|
| 72 |
+
"_split": null
|
| 73 |
+
}
|
val/data-00000-of-00001.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aace290318c7174d242bc6febb8965264a4f50ca11e6180c882d52a4ac37b7a5
|
| 3 |
+
size 404221232
|
val/dataset_info.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"corruption_type": "gaussian_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 13:49:59"
|
| 23 |
+
}
|
val/state.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "data-00000-of-00001.arrow"
|
| 5 |
+
}
|
| 6 |
+
],
|
| 7 |
+
"_fingerprint": "0e3106e158bd0afa",
|
| 8 |
+
"_format_columns": null,
|
| 9 |
+
"_format_kwargs": {},
|
| 10 |
+
"_format_type": null,
|
| 11 |
+
"_output_all_columns": false,
|
| 12 |
+
"_split": null
|
| 13 |
+
}
|