MarMaster commited on
Commit
59206c0
·
verified ·
1 Parent(s): 45144d6

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-00560.arrow +3 -0
  4. train/data-00001-of-00560.arrow +3 -0
  5. train/data-00002-of-00560.arrow +3 -0
  6. train/data-00003-of-00560.arrow +3 -0
  7. train/data-00004-of-00560.arrow +3 -0
  8. train/data-00005-of-00560.arrow +3 -0
  9. train/data-00006-of-00560.arrow +3 -0
  10. train/data-00007-of-00560.arrow +3 -0
  11. train/data-00008-of-00560.arrow +3 -0
  12. train/data-00009-of-00560.arrow +3 -0
  13. train/data-00010-of-00560.arrow +3 -0
  14. train/data-00011-of-00560.arrow +3 -0
  15. train/data-00012-of-00560.arrow +3 -0
  16. train/data-00013-of-00560.arrow +3 -0
  17. train/data-00014-of-00560.arrow +3 -0
  18. train/data-00015-of-00560.arrow +3 -0
  19. train/data-00016-of-00560.arrow +3 -0
  20. train/data-00017-of-00560.arrow +3 -0
  21. train/data-00018-of-00560.arrow +3 -0
  22. train/data-00019-of-00560.arrow +3 -0
  23. train/data-00020-of-00560.arrow +3 -0
  24. train/data-00021-of-00560.arrow +3 -0
  25. train/data-00022-of-00560.arrow +3 -0
  26. train/data-00023-of-00560.arrow +3 -0
  27. train/data-00024-of-00560.arrow +3 -0
  28. train/data-00025-of-00560.arrow +3 -0
  29. train/data-00026-of-00560.arrow +3 -0
  30. train/data-00027-of-00560.arrow +3 -0
  31. train/data-00028-of-00560.arrow +3 -0
  32. train/data-00029-of-00560.arrow +3 -0
  33. train/data-00030-of-00560.arrow +3 -0
  34. train/data-00031-of-00560.arrow +3 -0
  35. train/data-00032-of-00560.arrow +3 -0
  36. train/data-00033-of-00560.arrow +3 -0
  37. train/data-00034-of-00560.arrow +3 -0
  38. train/data-00035-of-00560.arrow +3 -0
  39. train/data-00036-of-00560.arrow +3 -0
  40. train/data-00037-of-00560.arrow +3 -0
  41. train/data-00038-of-00560.arrow +3 -0
  42. train/data-00039-of-00560.arrow +3 -0
  43. train/data-00040-of-00560.arrow +3 -0
  44. train/data-00041-of-00560.arrow +3 -0
  45. train/data-00042-of-00560.arrow +3 -0
  46. train/data-00043-of-00560.arrow +3 -0
  47. train/data-00044-of-00560.arrow +3 -0
  48. train/data-00045-of-00560.arrow +3 -0
  49. train/data-00046-of-00560.arrow +3 -0
  50. train/data-00047-of-00560.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: Shot_Noise
18
+
19
+ ## Dataset Description
20
+
21
+ This dataset contains corrupted versions of ImageNet-1K images using **shot_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: Shot_Noise
31
+
32
+ Adds shot noise (Poisson noise), common in low-light photography.
33
+
34
+ ## Usage
35
+
36
+ ```python
37
+ from datasets import load_dataset
38
+
39
+ # Load the dataset
40
+ dataset = load_dataset("MarMaster/corruption-shot_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-shot_noise",
3
+ "dataset_version": "1.0.0",
4
+ "description": "ImageNet-Corruption dataset with shot_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 21:09:20",
52
+ "corruption_type": "shot_noise"
53
+ }
train/data-00000-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3e3524cb4ef94fcc16e1c1509350753ea6b8a7e8ea905a6825c086678656d83
3
+ size 564284584
train/data-00001-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f74c10e13421ac8f36b2f2455f25155ee9905dd3b3891280abe4c9c8fb2a8d7
3
+ size 548486848
train/data-00002-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee7296b2e0b2fa85c9aee57621f525ae8f304dbc4da5a82b920a5bf262b5f586
3
+ size 791100904
train/data-00003-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cd03b91cc91b9af81ba85e774d19c86beb5ad99ab418bc7997fabe92a5c49f3
3
+ size 664583224
train/data-00004-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b8b5bdb1c1bc08091c66e4d69119131477fbb6c8ed5e0ed2885d989848d8970
3
+ size 595114176
train/data-00005-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d56ecab964c52cf6e99e7fee73c235eda37797a7a08d0bf9a17d2f04fa120ec
3
+ size 535885296
train/data-00006-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eae482b8751b9e8b8a81e0a488446e74f2e1ccc681e8e4ab4f26022edc155e62
3
+ size 531207568
train/data-00007-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81fbbaa48aa8f8746b5f6976d11151054d90c056f019286eb1067564c65f4709
3
+ size 573302128
train/data-00008-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2726216a958a7c44ba698c5c066685f761009a6044f27427c2fb8c660e973b8
3
+ size 670114936
train/data-00009-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6417b5568539fbe1042680dd9c21d5840be3e8e536514d98ceaac4de7284741c
3
+ size 571204240
train/data-00010-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0ba73fe951973be5c7b666aa36d1aceff96a700ef7dc94eef43f3968e806eac
3
+ size 529033720
train/data-00011-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ea21f1683d74e3571fa6efc1a2f1058018d4f8019537f31ee3c9712b7a34a61
3
+ size 657214440
train/data-00012-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fd8e91e966be21e42da8148c1fd48d09419a962ac3f6a39d52afbf3e2321212
3
+ size 577593288
train/data-00013-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34d1c44cc1110c56e916a96d2a4411c032f545e3538b633a202f2aeb876950bc
3
+ size 634671896
train/data-00014-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:beb35083975c641383311a7cf58ec32b94a83ce822b0ee0d7aa7b85c601b7248
3
+ size 679161680
train/data-00015-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abed220e75179c17b0530b4fd24b7b46eb0a9dde2cf25b938dcc3fb27b9fb18c
3
+ size 591146008
train/data-00016-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d64e15af9b7b1831605c0c62863c47b3620636bf56d83b4fa0e7fc45b222802f
3
+ size 566505656
train/data-00017-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ee4ef02ca1885873f14519b4111b72f4f82394dab921f6c802f4f7c3b3287c3
3
+ size 578553936
train/data-00018-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fe17c05b5f15a6aec192efbee17a364fc53323831fef51e6d3d9a5454676039
3
+ size 658125408
train/data-00019-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbd986b4299deaca516268f46440400321d69f95faa6a4b4da3f0a87c3c7f84c
3
+ size 644329088
train/data-00020-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27616d0ebae28334ed7d8beeeab71b278ba56043e361acd7c0a2f86adfcef9a4
3
+ size 541650472
train/data-00021-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9f5dc2fdbf8344cbf8248ec479d8760b25279f7c3215e52d90c47266c76ab71
3
+ size 700973888
train/data-00022-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:555948075fa4414462e1d77e769d0df83e1e94021b563ca9a79120d4be2f5983
3
+ size 481670952
train/data-00023-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba3a87badde5dbbdc5b6c2dfd3e80ab1479a655243fa449177d64b6d43c09265
3
+ size 472992424
train/data-00024-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2eeb80b4a919dc5cf7c9c3697ab8a293aae8c7af6bdf6d3d8e7753d2c232a9ce
3
+ size 609110880
train/data-00025-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:145e17543c7620bac93b9564c589057f71f7eb9549023edae0eba27ca9c0e1e8
3
+ size 591717408
train/data-00026-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc780fcfdd23246d4609d706e13c02f966486d52139eb97398e657e477759c7f
3
+ size 552468264
train/data-00027-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3397990c98a0b64f8ef182b15235d0dc11bd236b83636a718f6da2ddef0c987
3
+ size 628894168
train/data-00028-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9a98af2f76431897bc047056bacfa423f2bdf6dd5749b3cd5df46f742ffe2a8
3
+ size 682031136
train/data-00029-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe0054004cce972910a793335f7b070f188e702774d600ee6bbe02cf8af0ced4
3
+ size 555502392
train/data-00030-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39b0ed24eac822f8222eec59ad4fd854fa440a11c7a00be2d9a8fc355556fd55
3
+ size 533534864
train/data-00031-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:180061228f83dea4165a219ebea69ec5bec57f83b6ecceec75a423b2852d920d
3
+ size 541220072
train/data-00032-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bceef48886c2bdfebe4f7fc281a7dc4c214c71e2fb60ed88d9e62f434ec04a00
3
+ size 667009912
train/data-00033-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84f96015bd1b437db6f6e39dd11f7fd797b3efc4a778f55e88fd38687517e88f
3
+ size 731168240
train/data-00034-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54758fac50f632282ba56dc97d8a6997f360bb1cb060629547337b14b68d0988
3
+ size 655450528
train/data-00035-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e67aff8ab4d0779b417e64fe9e8596edeb77156190c9c6dea2d466958a1621b
3
+ size 605497448
train/data-00036-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a5be826945b35594457fe6cdceedde88b17935e735b9fc6fe654fa35a19b29b
3
+ size 640114408
train/data-00037-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e5eb145acd6bd29a5f65a0904143d7c21c006e1196f261e5d2b30dabe897410
3
+ size 505453536
train/data-00038-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd7782168a55a52bb9f80520f8e8bdae389bd54b587ed0c30961e128614a9ea7
3
+ size 539922096
train/data-00039-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c61c83eced327952c0df979c187813a8c80dc9d319be39863c256ef00578f109
3
+ size 597104304
train/data-00040-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f44af80cdfb5bafcc049510386b2963a6f295bf55ff99cd3fc5bcdf018e118f0
3
+ size 673135504
train/data-00041-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbfead86d4a0e92d7767457c508ea925c6b3876215f4c4f8ff8c1024678307de
3
+ size 517382920
train/data-00042-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:667752634db2f5a1cf6e48d37dbcbe55f779306fed4ad6ba74e81b986a6ccbcc
3
+ size 671399464
train/data-00043-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e32826bebea6584eb94563ae63e193374852d5733aa8110ca0d5df4370012a7
3
+ size 602835168
train/data-00044-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ff47dadb5192df22e6c019087264e0aa857a6d06b5e8815f39429eb023cc27c
3
+ size 629000344
train/data-00045-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d41fe1fe1fb1190e1e4f822f38a95ee2212c9c9ef02796851629ffbf6a869b86
3
+ size 572915704
train/data-00046-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d3f21779f2f5bbc42a39a1b783c2df1748481e02e3bbc23016cf77c1c850fb2
3
+ size 582831776
train/data-00047-of-00560.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:859eda93a2415424e10495aedf7e102e125c0e53da69fccdbc1b591ad2a8ce42
3
+ size 638562616