CoolFace
Datasetpublic

serbekun/CCAiM-CloudsDataset

CCAiM CloudsDataset Description This dataset contains photographs of clouds collected for the CCAiM project, a model for cloud classification. It includes various types of clouds captured from the ground and can be used for training and testing computer vision models. Dataset Structure Cloud images in JPEG/PNG format Optional metadata: cloud type, date, location Dataset Statistics Total number of images: 916 Cloud Type Number… See the full description on the dataset page: https://huggingface.co/datasets/serbekun/CCAiM-CloudsDataset.

sourceHugging Facemitupdated 2mo agoView on Hugging Face
0likes320downloads
Dataset Card

CCAiM CloudsDataset

Description

This dataset contains photographs of clouds collected for the CCAiM project, a model for cloud classification. It includes various types of clouds captured from the ground and can be used for training and testing computer vision models.

Dataset Structure

  • Cloud images in JPEG/PNG format
  • Optional metadata: cloud type, date, location

Dataset Statistics

Total number of images: 916

Cloud TypeNumber of ImagesPercentage
Cirrus10211.14%
Cirrocumulus333.60%
Cirrostratus424.59%
Altocumulus9610.48%
Altostratus636.88%
Nimbostratus171.86%
Stratocumulus9410.26%
Stratus384.15%
Cumulus39843.45%
Cumulonimbus333.60%

Usage

all data

python
from datasets import load_dataset

dataset = load_dataset("serbekun/CCAiM-CloudsDataset")
print(dataset)

Only one file

python
from datasets import load_dataset

ds = load_dataset("serbekun/CCAiM-CloudsDataset")
example = ds["train"][0]

image = example["image"]
label = example["label"]

image.show()
print("Label:", ds["train"].features["label"].int2str(label))

You will get a DatasetDict with splits like train, validation (if available) and images of clouds with their corresponding labels.

Project Purpose

The dataset is intended for training and testing the CCAiM model for cloud classification. It can be used for educational and research purposes.

License

The dataset is released under the MIT

Contact

For questions or suggestions, reach out via GitHub: serbekun