MarMaster commited on
Commit
9ab9e71
·
verified ·
1 Parent(s): 5bdbdfb

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +81 -0
  2. dataset_info.json +53 -0
  3. train/data-00000-of-00578.arrow +3 -0
  4. train/data-00001-of-00578.arrow +3 -0
  5. train/data-00002-of-00578.arrow +3 -0
  6. train/data-00003-of-00578.arrow +3 -0
  7. train/data-00004-of-00578.arrow +3 -0
  8. train/data-00005-of-00578.arrow +3 -0
  9. train/data-00006-of-00578.arrow +3 -0
  10. train/data-00007-of-00578.arrow +3 -0
  11. train/data-00008-of-00578.arrow +3 -0
  12. train/data-00009-of-00578.arrow +3 -0
  13. train/data-00010-of-00578.arrow +3 -0
  14. train/data-00011-of-00578.arrow +3 -0
  15. train/data-00012-of-00578.arrow +3 -0
  16. train/data-00013-of-00578.arrow +3 -0
  17. train/data-00014-of-00578.arrow +3 -0
  18. train/data-00015-of-00578.arrow +3 -0
  19. train/data-00016-of-00578.arrow +3 -0
  20. train/data-00017-of-00578.arrow +3 -0
  21. train/data-00018-of-00578.arrow +3 -0
  22. train/data-00019-of-00578.arrow +3 -0
  23. train/data-00020-of-00578.arrow +3 -0
  24. train/data-00021-of-00578.arrow +3 -0
  25. train/data-00022-of-00578.arrow +3 -0
  26. train/data-00023-of-00578.arrow +3 -0
  27. train/data-00024-of-00578.arrow +3 -0
  28. train/data-00025-of-00578.arrow +3 -0
  29. train/data-00026-of-00578.arrow +3 -0
  30. train/data-00027-of-00578.arrow +3 -0
  31. train/data-00028-of-00578.arrow +3 -0
  32. train/data-00029-of-00578.arrow +3 -0
  33. train/data-00030-of-00578.arrow +3 -0
  34. train/data-00031-of-00578.arrow +3 -0
  35. train/data-00032-of-00578.arrow +3 -0
  36. train/data-00033-of-00578.arrow +3 -0
  37. train/data-00034-of-00578.arrow +3 -0
  38. train/data-00035-of-00578.arrow +3 -0
  39. train/data-00036-of-00578.arrow +3 -0
  40. train/data-00037-of-00578.arrow +3 -0
  41. train/data-00038-of-00578.arrow +3 -0
  42. train/data-00039-of-00578.arrow +3 -0
  43. train/data-00040-of-00578.arrow +3 -0
  44. train/data-00041-of-00578.arrow +3 -0
  45. train/data-00042-of-00578.arrow +3 -0
  46. train/data-00043-of-00578.arrow +3 -0
  47. train/data-00044-of-00578.arrow +3 -0
  48. train/data-00045-of-00578.arrow +3 -0
  49. train/data-00046-of-00578.arrow +3 -0
  50. train/data-00047-of-00578.arrow +3 -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_Noise
18
+
19
+ ## Dataset Description
20
+
21
+ This dataset contains corrupted versions of ImageNet-1K images using **gaussian_noise** 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_Noise
31
+
32
+ Adds Gaussian noise to images, simulating sensor noise.
33
+
34
+ ## Usage
35
+
36
+ ```python
37
+ from datasets import load_dataset
38
+
39
+ # Load the dataset
40
+ dataset = load_dataset("MarMaster/corruption-gaussian_noise")
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_noise",
3
+ "dataset_version": "1.0.0",
4
+ "description": "ImageNet-Corruption dataset with gaussian_noise 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 16:26:23",
52
+ "corruption_type": "gaussian_noise"
53
+ }
train/data-00000-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:438458636fd1440d17cab1b5c45d748c52e9c3e5b0af2b0b459204a3391cff54
3
+ size 552537672
train/data-00001-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8868ee8140d12fdaf846500a785219c31de1f514d89e73fd30b6506bcf98057
3
+ size 560220256
train/data-00002-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8e6070f5f1a1640acefc436236eae75c715bde5f475b1e2f9158e7b09687b4f
3
+ size 781260192
train/data-00003-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83901e3b4b6be1545ba1ecaacf132dfdc10216a6d370e5bd5eea19ff5a62d6b0
3
+ size 622873016
train/data-00004-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49964af2ef2a928ceda8533a30deca1536c92da336a4e1ca809074967479d133
3
+ size 569616984
train/data-00005-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d93acdc1d7b7f34599d526adf90814c024219521c3d2dd931a99f570f0db0822
3
+ size 526541120
train/data-00006-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09d66d39168a59fba075ab76c0a4ad705aa11b9d0817bededf614fa332e0c062
3
+ size 511007560
train/data-00007-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94c7900f2241452cf12a9e0ba0202120ff2b265c353d6ec606308aa17346038b
3
+ size 541863272
train/data-00008-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd6f22073c085c0dbbc221879c1d00b337dfa39c44b2d91054cc7e352f5c6659
3
+ size 617329976
train/data-00009-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88baf0bac3c83dabeed55bf7a3ebb71a63cef39254cf8770e451b8ca2b383204
3
+ size 583905712
train/data-00010-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb071ddfa178754fdf0f387dcab116e2d8ae37c64de50b45cff61658b1cbf8e9
3
+ size 506141120
train/data-00011-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8492fd92932da6312f82df3b845033fccf297afcbfa50de5ab9ec5534efa5e0d
3
+ size 607567024
train/data-00012-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0304a8088d6169f6ef84b62411ef8e87dccbf5041debf2521c9476a7e24ba413
3
+ size 606606912
train/data-00013-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11243995a8612b05148752745a86438f55c2d8291932e96e055242eeadd30582
3
+ size 573648232
train/data-00014-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:224a0752110fe44d702df21988e018a19e3c5afd719b337e9477a6e5dbf006cd
3
+ size 627026328
train/data-00015-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7895d1c2a5303d77fc07481d2b174bc6cb7c03a9e7bc26cc75a41ad3c6e15af
3
+ size 627174576
train/data-00016-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f041556459068783af3e76a34723359df2f762c9d8dd6b6c5657686d6a23b2a1
3
+ size 537456880
train/data-00017-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0ebd5fb680ad64ba6655bbfc033d2d9acd1b3d3f1aab2702c248d89c39a2c4b
3
+ size 575318904
train/data-00018-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cc4fd2d98422214c0317a65bb9e7145cae1e98401d579e4e3e1024be6715b8c
3
+ size 607325016
train/data-00019-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c40f5e8e2c407519f974c8a7f0c387442b24acb490d2952b7c0e60b29d03e382
3
+ size 580265152
train/data-00020-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c79881c9af4e763e18d6886610b586be04c2b8a90cf2bc0a6e6348062d3eb8e9
3
+ size 614246264
train/data-00021-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30c806e92896dd065cabce2a3a8203c3f0ff91e8eabcac7f42e4c51476dddf27
3
+ size 532085744
train/data-00022-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cc1cd5f6450d3f4bc894fba84a8d5a5014d5507031dc49eba58b88187c64364
3
+ size 657087944
train/data-00023-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a9647cfabcd218c2ebf2687b3c7edcc14d2866f3ad7a2e85779ad36d02ecf48
3
+ size 467657472
train/data-00024-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9845fda964607a648d46e08f76c10a1cc42d0ec5e734aed6f6cfd886624e1808
3
+ size 511728632
train/data-00025-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebd3b4af834356b561ace2a1e80f234ebd360be7c3ebb86b0a3fdecb946a94f3
3
+ size 577637728
train/data-00026-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2d6e1fe5f041e41e03986aa707f76ed4d1cfe14dbb489d402a9924fbef52fe4
3
+ size 546985072
train/data-00027-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80726de686c94db083890be84c86fc97f7951cecca59af4dc0f364894a43275c
3
+ size 510305448
train/data-00028-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:539dede6332d65cc767faacbef15cd42d3a67b99476e2c985c8fb121225d6789
3
+ size 650893152
train/data-00029-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19997d732234deabef014fdf171bd116173e0865878b654f7303f5712dd51d19
3
+ size 657168432
train/data-00030-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4db6bcbcd1672400c03f7c0910a1d09ed627e606755708fef7a7ff817cf7198
3
+ size 542839096
train/data-00031-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7190d8aa09642c1757cc5e3ca0ba5605d2ef1b14331fd35812b9b12498714a4
3
+ size 504976872
train/data-00032-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95d4ae86151e21f844147ee88c5b35d23c622d0f9c72d13db58f52e23daf1636
3
+ size 529387944
train/data-00033-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebad91313e4f61a9f4ff632d78e6e4e1cf02cbc77255c54d351410c89c765957
3
+ size 658162960
train/data-00034-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad369cc50186e1ca21526ce3d61704fea9d8322d8e97026e6e7654121b4014dd
3
+ size 722338576
train/data-00035-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3edc53dd6cb15f3a939c3a1ac0a6315cca84b9ed896834cd16be7c13f18d5a1b
3
+ size 613431504
train/data-00036-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a48e74f0d5f650ea759a28098b6d9ebf0c03ccfd8b474024602b0a3bcacd61a1
3
+ size 623756536
train/data-00037-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f01028ecf151de8e09a68b9b86ac3b604b7b245a7ba873ccab09df697269212d
3
+ size 591342264
train/data-00038-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:337753fc9c8230b67504a4c3b2d84e926574f5c4be03ef06f4e3157ac7eaa4fa
3
+ size 523678368
train/data-00039-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9ceffcb354ec34c754942a3f61ef38dbb62341cdc72cb915856b0909e8938a4
3
+ size 526254576
train/data-00040-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:306e839247ebbd43d94e606f23fc269b00856f8cdf7df858f072806c0aaf5deb
3
+ size 555578320
train/data-00041-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79646462e2eef1cc486c2e45e1453eca28e02f8612413b42fdcc28780fe69e99
3
+ size 655310560
train/data-00042-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38023425dc5361a161e3b9182f929c4c79b58496c50beae16d635dce59ae4771
3
+ size 541210272
train/data-00043-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70084619b8a9dff000a8232d63d7cb62b38038484ed116a862c6dcaf777aa4cd
3
+ size 569183584
train/data-00044-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8d5abca40f8a7a18a94f05c38099ca60e747703bac2327df36a1ac8e0a4a4b4
3
+ size 599051696
train/data-00045-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:943d8cfac53050bd7c169793e8051ce3a25cac1a31ca15f32635842612be2852
3
+ size 597367408
train/data-00046-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0853e4ca9e5b348e6df7115216b85239421416a2080708b768698d8853beb211
3
+ size 605719464
train/data-00047-of-00578.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:944621668edbfb300e29df584c534ce3b27e3d2524df2bb61f157325ac654ecb
3
+ size 518988552