jcamier commited on
Commit
7892dd9
·
verified ·
1 Parent(s): ea4732c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -3
README.md CHANGED
@@ -1,3 +1,38 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # Cloud and Sky Image Tensors for Classification
6
+
7
+ This dataset is designed for those interested in cloud classification projects. Due to licensing restrictions, the raw images cannot be shared publicly. However, the transformed tensors provided here are optimized for image classification tasks and are typically all you need for such projects.
8
+
9
+ ### Tensor Specifications
10
+
11
+ These tensors are preprocessed and normalized for use with ResNet models. The normalization parameters are as follows:
12
+ - **Mean**: `[0.485, 0.456, 0.406]`
13
+ - **Standard Deviation**: `[0.229, 0.224, 0.225]`
14
+
15
+ ### Cloud Class Labels
16
+
17
+ The dataset uses standard World Meteorological Organization (WMO) cloud classification labels, with the addition of "Clr" for clear skies. The labels used are:
18
+
19
+ - `As`: Altostratus
20
+ - `Cb`: Cumulonimbus
21
+ - `Cc`: Cirrocumulus
22
+ - `Ci`: Cirrus
23
+ - `Cs`: Cirrostratus
24
+ - `Ct`: Contrails
25
+ - `Cu`: Cumulus
26
+ - `Ns`: Nimbostratus
27
+ - `Sc`: Stratocumulus
28
+ - `St`: Stratus
29
+ - `Ac`: Altocumulus
30
+ - `Clr`: Clear Sky
31
+
32
+ For more information on cloud classification, please refer to the WMO Cloud Atlas: [WMO Cloud Classification](https://cloudatlas.wmo.int/en/cloud-classification-summary.html).
33
+
34
+ ### Usage
35
+
36
+ These tensors are ready for direct use in training or testing ResNet and similar models for cloud classification tasks. We hope this dataset supports your research and projects.
37
+
38
+ Enjoy!