File size: 2,705 Bytes
19a7895
 
4964949
 
 
 
8628e11
4964949
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8628e11
4964949
d67fce1
 
19a7895
14f045d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d67fce1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
---
license: mit
dataset_info:
  features:
  - name: image
    dtype: image
  - name: label
    dtype:
      class_label:
        names:
          '0': AnnualCrop
          '1': Forest
          '2': HerbaceousVegetation
          '3': Highway
          '4': Industrial
          '5': Pasture
          '6': PermanentCrop
          '7': Residential
          '8': River
          '9': SeaLake
  splits:
  - name: train
    num_bytes: 70666516.8
    num_examples: 21600
  - name: validation
    num_bytes: 8700747.8
    num_examples: 2700
  - name: test
    num_bytes: 8631409.1
    num_examples: 2700
  download_size: 93886033
  dataset_size: 87998673.69999999
task_categories:
- image-classification
---

# Dataset Card for EuroSat

## Table of Contents
- [How to Use](#How-to-Use)
- [Dataset Description](#dataset-description)
  - [Dataset Summary](#dataset-summary)
- [Dataset Structure](#dataset-structure)
  - [Data Instances](#data-instances)
  - [Data Fields](#data-fields)
  - [Data Splits](#data-splits)
- [Additional Information](#additional-information)
  - [Licensing Information](#licensing-information)


## How to Use

- Install [datasets](https://pypi.org/project/datasets/):

```bash
pip install datasets
```
- How to use in Python
```py
from datasets import load_dataset
train_data = load_dataset("Honaker/eurosat_dataset", split="train")
```

## Dataset Description
- **Homepage:** https://zenodo.org/record/7711810#.ZAm3k-zMKEA

### Dataset Summary
EuroSat is an image classification dataset with 10 different classes on satellite imagery. There is over 27,000 labeled images.


## Dataset Structure

The dataset is structured as follows:
```py
DatasetDict({
    train: Dataset({
        features: ['image', 'labels'],
        num_rows: 21600
    })
    validation: Dataset({
        features: ['image', 'labels'],
        num_rows: 2700
    })
    test: Dataset({
        features: ['image', 'labels'],
        num_rows: 2700
    })
})
```

### Data Instances

An example of the data for one image is:
```py
{
 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=64x64>,
 'labels': 0
}
 ```
 
 With the type of each field being defined as:
 ```py
{
 'image': <PIL.JpegImagePlugin.JpegImageFile>,
 'labels': Integer
```
### Data Fields

The dataset has the following fields:

 - 'image': Satellite image that is of type <PIL.TiffImagePlugin.TiffImageFile image>
 - 'labels': the label of the Satellite image as an integer

### Data Splits

|                | Train  | Validation | Test |
|----------------|--------|------------|------|
| Images         | 21600  | 2700       | 2700    |


## Additional Information

### Licensing Information
EuroSat is licensed under a MIT