CoolFace
Datasetpublic

resaro/eurosat

EuroSAT Image Classification Dataset This dataset contains the EuroSAT satellite image classification data in parquet format for easy loading and processing. Dataset Information Task: Image Classification Source: EuroSAT Dataset Classes: 10 land use/land cover classes Image Size: 64x64 pixels (RGB) Format: Parquet with embedded images Splits: train, test Classes The dataset contains 10 land use and land cover classes: ID Class Name… See the full description on the dataset page: https://huggingface.co/datasets/resaro/eurosat.

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes50downloads
Dataset Card

EuroSAT Image Classification Dataset

This dataset contains the EuroSAT satellite image classification data in parquet format for easy loading and processing.

Dataset Information

  • —Task: Image Classification
  • —Source: EuroSAT Dataset
  • —Classes: 10 land use/land cover classes
  • —Image Size: 64x64 pixels (RGB)
  • —Format: Parquet with embedded images
  • —Splits: train, test

Classes

The dataset contains 10 land use and land cover classes:

IDClass NameDescription
0AnnualCropAnnual crop fields
1ForestForest areas
2HerbaceousVegetationHerbaceous vegetation
3HighwayHighway and roads
4IndustrialIndustrial buildings
5PasturePasture land
6PermanentCropPermanent crop fields
7ResidentialResidential areas
8RiverRivers and water bodies
9SeaLakeSeas and lakes

Usage

python
from datasets import load_dataset

# Load the dataset
ds = load_dataset("resaro/eurosat")

# Access splits
print(ds["train"][0])  # First training example
print(ds["test"][0])   # First test example

# Iterate over the dataset
for example in ds["train"]:
    image = example["image"]  # PIL Image
    label = example["label"]  # Integer 0-9
    # Your processing here

Dataset Structure

Each example contains:

  • —image: PIL Image object (64x64 RGB)
  • —label: Integer label (0-9) corresponding to the class

Data Splits

SplitSamples
train990
test1,000
Total1,990

Class Distribution (Training Set)

All classes are balanced with approximately 99 samples per class in the training set.

Citation

If you use this dataset, please cite the original EuroSAT paper:

bibtex
@article{helber2019eurosat,
  title={Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification},
  author={Helber, Patrick and Bischke, Benjamin and Dengel, Andreas and Borth, Damian},
  journal={IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing},
  volume={12},
  number={7},
  pages={2217--2226},
  year={2019},
  publisher={IEEE}
}

License

MIT License - Please refer to the original EuroSAT dataset for detailed license information.