MarMaster commited on
Commit
2412e8e
·
verified ·
1 Parent(s): 9bdeb01

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-00068.arrow +3 -0
  4. train/data-00001-of-00068.arrow +3 -0
  5. train/data-00002-of-00068.arrow +3 -0
  6. train/data-00003-of-00068.arrow +3 -0
  7. train/data-00004-of-00068.arrow +3 -0
  8. train/data-00005-of-00068.arrow +3 -0
  9. train/data-00006-of-00068.arrow +3 -0
  10. train/data-00007-of-00068.arrow +3 -0
  11. train/data-00008-of-00068.arrow +3 -0
  12. train/data-00009-of-00068.arrow +3 -0
  13. train/data-00010-of-00068.arrow +3 -0
  14. train/data-00011-of-00068.arrow +3 -0
  15. train/data-00012-of-00068.arrow +3 -0
  16. train/data-00013-of-00068.arrow +3 -0
  17. train/data-00014-of-00068.arrow +3 -0
  18. train/data-00015-of-00068.arrow +3 -0
  19. train/data-00016-of-00068.arrow +3 -0
  20. train/data-00017-of-00068.arrow +3 -0
  21. train/data-00018-of-00068.arrow +3 -0
  22. train/data-00019-of-00068.arrow +3 -0
  23. train/data-00020-of-00068.arrow +3 -0
  24. train/data-00021-of-00068.arrow +3 -0
  25. train/data-00022-of-00068.arrow +3 -0
  26. train/data-00023-of-00068.arrow +3 -0
  27. train/data-00024-of-00068.arrow +3 -0
  28. train/data-00025-of-00068.arrow +3 -0
  29. train/data-00026-of-00068.arrow +3 -0
  30. train/data-00027-of-00068.arrow +3 -0
  31. train/data-00028-of-00068.arrow +3 -0
  32. train/data-00029-of-00068.arrow +3 -0
  33. train/data-00030-of-00068.arrow +3 -0
  34. train/data-00031-of-00068.arrow +3 -0
  35. train/data-00032-of-00068.arrow +3 -0
  36. train/data-00033-of-00068.arrow +3 -0
  37. train/data-00034-of-00068.arrow +3 -0
  38. train/data-00035-of-00068.arrow +3 -0
  39. train/data-00036-of-00068.arrow +3 -0
  40. train/data-00037-of-00068.arrow +3 -0
  41. train/data-00038-of-00068.arrow +3 -0
  42. train/data-00039-of-00068.arrow +3 -0
  43. train/data-00040-of-00068.arrow +3 -0
  44. train/data-00041-of-00068.arrow +3 -0
  45. train/data-00042-of-00068.arrow +3 -0
  46. train/data-00043-of-00068.arrow +3 -0
  47. train/data-00044-of-00068.arrow +3 -0
  48. train/data-00045-of-00068.arrow +3 -0
  49. train/data-00046-of-00068.arrow +3 -0
  50. train/data-00047-of-00068.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: Frost
18
+
19
+ ## Dataset Description
20
+
21
+ This dataset contains corrupted versions of ImageNet-1K images using **frost** 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: Frost
31
+
32
+ Adds frost effects, simulating cold weather conditions.
33
+
34
+ ## Usage
35
+
36
+ ```python
37
+ from datasets import load_dataset
38
+
39
+ # Load the dataset
40
+ dataset = load_dataset("MarMaster/corruption-frost")
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-frost",
3
+ "dataset_version": "1.0.0",
4
+ "description": "ImageNet-Corruption dataset with frost 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 15:25:35",
52
+ "corruption_type": "frost"
53
+ }
train/data-00000-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79f941d25b8eb280c0f46444a4f6580f21f41de9e42d89d57443277d75f77d09
3
+ size 508299376
train/data-00001-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a646c97b909819c3b60deb413fbd9eabeb86aae5113147f89ce1d252d4e6393
3
+ size 501334376
train/data-00002-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb3389519670491cc99f5682c1c8f7c52613c3e39b8bbb825e0733db2d68154e
3
+ size 502447936
train/data-00003-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f04e2f0d1aea8c54a74c9e8b7c58b2c0aef78f7d1d635055a8ecc35af30bc31
3
+ size 501447912
train/data-00004-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f40abf52c641e52a7ec6ea25ab00e88683160749be4f6ce6782113d9b3a4ddc0
3
+ size 509068464
train/data-00005-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9076fcf7f1b127aa4f859473bdf106dcce37473a95db59cf43e26ff54c36cac
3
+ size 515650144
train/data-00006-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29d863d9514c0ff3577b09a15a97cc5e14728861e4d3875f3decf9798c9ca859
3
+ size 504861248
train/data-00007-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:323aed1d9d919bed672a7b1773bee8a233f60d35e4efc20427ba892b2f4fd8bb
3
+ size 508030736
train/data-00008-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86c8499bf4c18f7eaac2177b0121156d0e778d6a8bb9fcf5af1d80137bc114c1
3
+ size 507712120
train/data-00009-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1e4e9242b4e100b018084bb483d216ff897f8213dc779775037884d7bddcbd1
3
+ size 513062080
train/data-00010-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d68c036281858532faca94981fdacb54041d7a9f5cd27da4143238726eb1c6d
3
+ size 512373072
train/data-00011-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dd48d0c66363774178ce7e8c016576b53f0bf2b966801087ad7f6275adcd3a9
3
+ size 511676680
train/data-00012-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28695eb1839546583cf4905060dc0a1a9bbfdd83c20195f19d48483f476d827d
3
+ size 511429408
train/data-00013-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ffbec40b05d055cf177d6b287464d110bfd631f671bd759a30099003e8400b4
3
+ size 517510568
train/data-00014-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4390995798413a7fd20f85eb7156154b3d47940234be67aa6fd65dd3fbc1606d
3
+ size 504367152
train/data-00015-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5be2d6132b48fbad3b33975046b645d137397d08058f286f4e147e93c34dbd6b
3
+ size 501593784
train/data-00016-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6aadc8d59e02f06f1209ff598beb6039645fedebd29d4b997af4fa558537d8f
3
+ size 506936352
train/data-00017-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:550b39a338e0fc328d6ad0bc142addf807618ed82e1cc09ab2cb8710254a5c58
3
+ size 503731344
train/data-00018-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b83f2abf56f63899fb2ed32a954d59057bb21835986709e0d4e25b42a52b689
3
+ size 506845752
train/data-00019-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6b5ad9acd602c0fc9dcc8244bfe61dbaa38bd680badd3ae5e260760f54396bb
3
+ size 499590096
train/data-00020-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c05df7f8ae2908499a481c3895c873336b58fecbc6013981d37f542c214db96
3
+ size 517432168
train/data-00021-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3651efa0c5f22281a14c463f59f79f5b3cacb9c80b9a26e027dee7888968cf46
3
+ size 511268912
train/data-00022-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91413e1f9ee1089a31775ca48188f001f5a22694b7e71fb2c27d4c5852c9bb68
3
+ size 508247360
train/data-00023-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b53e9469726337a74cb8a9270ac4b9232126d7000581ab794e41ef09686081aa
3
+ size 515295400
train/data-00024-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d44a810e3f2e2da1e6ace6a236408547637fa221732c42c87bda907c65db979c
3
+ size 519945576
train/data-00025-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:356f299be971135b7a24756eba577621e24381d8034ede4e527ce5a3e22f9f56
3
+ size 516387552
train/data-00026-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74bd2070a6fc23f582ef50afcce23e2e6ea64912fc614065ed565c2ab2afdbba
3
+ size 503731384
train/data-00027-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c57391bb30b00c98ca628793096579363c9932b2874f4666fb8ea4f86014dda
3
+ size 508717304
train/data-00028-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdc46be8d7d510f074ae8182f0357516346990b0fa51339f017f458c13d73a02
3
+ size 510418616
train/data-00029-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98254f9c8a4a85c73080064bb1c496b7b5a6e4ab645ee5a035d92eb293d59d83
3
+ size 501475008
train/data-00030-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67c021dcb6da5d1aaa149530b4f7a56d7fa80008a4a8049565134f277642bfaf
3
+ size 505624696
train/data-00031-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02204d3460fa14a12afdcd5ef92ea186f911ab59f3ef48c9d0e835b6ed75eea3
3
+ size 504324752
train/data-00032-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a498aca815616b423d5d80077c385e6688f5ee9d0eed43de24d53365a0c370a
3
+ size 505822152
train/data-00033-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7e48d54a5561e9e9fbcbde4203c15147c07ba6a8134e4f734055770a0a54625
3
+ size 504779336
train/data-00034-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:288ce66e17e4f0532505a7e4184237407bb2bd7ffc7f33b15ef0e0a537b45172
3
+ size 511547752
train/data-00035-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a41b8397a1f909896428055fc8e041fda4c3a341f5acf76bf6dcf57fca0c055c
3
+ size 511870944
train/data-00036-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6577aacf9928f8e1ecfc983e3164c4e1c6a2c633f6b198d49db44e7413886453
3
+ size 517589912
train/data-00037-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:354ce22539a9488668ee1edcb64dba660282bf55b4785333b5306a55a9ec1660
3
+ size 509752496
train/data-00038-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e51e35f9c0c406ffda08374f9240a9af830809a1aee61addd5c9856888666e22
3
+ size 503414720
train/data-00039-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15102c9ede28cdf758d2d451bd5bb9f94cd09526cc3ce4be603560a457a026a0
3
+ size 510370992
train/data-00040-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fa0f089e3e2620027d233d5ad3b1a64aa89d5bc91008f9051a375720266d35c
3
+ size 517744104
train/data-00041-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e67636bc848ac3d167442706078eb19a94959f51913e1edfe7d96a037dadf7a
3
+ size 510057616
train/data-00042-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dbabf685066d586fe1f93eb01bbaf078fb357db0bc88adafc6353e127ebb325
3
+ size 504908000
train/data-00043-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a135d8d059da9c9f171bdd4b796c01465a2f2d381151d0eb42527d2a74c0b49c
3
+ size 500138904
train/data-00044-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbf597b7d996525de8f2d2a2e6a0f42d20d0be20ebedfbd96653b623d26d0c86
3
+ size 510599128
train/data-00045-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5474939e0f784e358aeb9b1334fe54eac1e16bffae91ff8a02a58b52b58bd19
3
+ size 511587560
train/data-00046-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4e7d7a3c911f8a4b1678ca163c648d2ffc217de37bc34aeda98d0452c1d7c78
3
+ size 510409840
train/data-00047-of-00068.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:179896e68d9294e9522fc477bf2b61920a6aaa3172d675d01c85a827f8a26476
3
+ size 490607656