Datasets:
Add comprehensive dataset README
Browse files
README.md
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-classification
|
| 5 |
+
tags:
|
| 6 |
+
- satellite
|
| 7 |
+
- remote-sensing
|
| 8 |
+
- land-cover
|
| 9 |
+
- eurosat
|
| 10 |
+
size_categories:
|
| 11 |
+
- 1K<n<10K
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# EuroSAT Image Classification Dataset
|
| 15 |
+
|
| 16 |
+
This dataset contains the EuroSAT satellite image classification data in parquet format for easy loading and processing.
|
| 17 |
+
|
| 18 |
+
## Dataset Information
|
| 19 |
+
|
| 20 |
+
- **Task**: Image Classification
|
| 21 |
+
- **Source**: [EuroSAT Dataset](https://github.com/phelber/EuroSAT)
|
| 22 |
+
- **Classes**: 10 land use/land cover classes
|
| 23 |
+
- **Image Size**: 64x64 pixels (RGB)
|
| 24 |
+
- **Format**: Parquet with embedded images
|
| 25 |
+
- **Splits**: train, test
|
| 26 |
+
|
| 27 |
+
## Classes
|
| 28 |
+
|
| 29 |
+
The dataset contains 10 land use and land cover classes:
|
| 30 |
+
|
| 31 |
+
| ID | Class Name | Description |
|
| 32 |
+
|----|------------|-------------|
|
| 33 |
+
| 0 | AnnualCrop | Annual crop fields |
|
| 34 |
+
| 1 | Forest | Forest areas |
|
| 35 |
+
| 2 | HerbaceousVegetation | Herbaceous vegetation |
|
| 36 |
+
| 3 | Highway | Highway and roads |
|
| 37 |
+
| 4 | Industrial | Industrial buildings |
|
| 38 |
+
| 5 | Pasture | Pasture land |
|
| 39 |
+
| 6 | PermanentCrop | Permanent crop fields |
|
| 40 |
+
| 7 | Residential | Residential areas |
|
| 41 |
+
| 8 | River | Rivers and water bodies |
|
| 42 |
+
| 9 | SeaLake | Seas and lakes |
|
| 43 |
+
|
| 44 |
+
## Usage
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
from datasets import load_dataset
|
| 48 |
+
|
| 49 |
+
# Load the dataset
|
| 50 |
+
ds = load_dataset("resaro/eurosat")
|
| 51 |
+
|
| 52 |
+
# Access splits
|
| 53 |
+
print(ds["train"][0]) # First training example
|
| 54 |
+
print(ds["test"][0]) # First test example
|
| 55 |
+
|
| 56 |
+
# Iterate over the dataset
|
| 57 |
+
for example in ds["train"]:
|
| 58 |
+
image = example["image"] # PIL Image
|
| 59 |
+
label = example["label"] # Integer 0-9
|
| 60 |
+
# Your processing here
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## Dataset Structure
|
| 64 |
+
|
| 65 |
+
Each example contains:
|
| 66 |
+
- `image`: PIL Image object (64x64 RGB)
|
| 67 |
+
- `label`: Integer label (0-9) corresponding to the class
|
| 68 |
+
|
| 69 |
+
### Data Splits
|
| 70 |
+
|
| 71 |
+
| Split | Samples |
|
| 72 |
+
|-------|---------|
|
| 73 |
+
| train | 990 |
|
| 74 |
+
| test | 1,000 |
|
| 75 |
+
| **Total** | **1,990** |
|
| 76 |
+
|
| 77 |
+
### Class Distribution (Training Set)
|
| 78 |
+
|
| 79 |
+
All classes are balanced with approximately 99 samples per class in the training set.
|
| 80 |
+
|
| 81 |
+
## Citation
|
| 82 |
+
|
| 83 |
+
If you use this dataset, please cite the original EuroSAT paper:
|
| 84 |
+
|
| 85 |
+
```bibtex
|
| 86 |
+
@article{helber2019eurosat,
|
| 87 |
+
title={Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification},
|
| 88 |
+
author={Helber, Patrick and Bischke, Benjamin and Dengel, Andreas and Borth, Damian},
|
| 89 |
+
journal={IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing},
|
| 90 |
+
volume={12},
|
| 91 |
+
number={7},
|
| 92 |
+
pages={2217--2226},
|
| 93 |
+
year={2019},
|
| 94 |
+
publisher={IEEE}
|
| 95 |
+
}
|
| 96 |
+
```
|
| 97 |
+
|
| 98 |
+
## License
|
| 99 |
+
|
| 100 |
+
MIT License - Please refer to the original EuroSAT dataset for detailed license information.
|