File size: 2,954 Bytes
8d06fde
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b79f9bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8d06fde
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language: en
license: unknown
task_categories:
- image-classification
paperswithcode_id: uc-merced-land-use-dataset
pretty_name: UC Merced
tags:
- remote-sensing
- earth-observation
- geospatial
- satellite-imagery
- land-cover-classification
- USGS National Map
- USGS
dataset_info:
  features:
  - name: image
    dtype: image
  - name: label
    dtype:
      class_label:
        names:
          '0': agricultural
          '1': airplane
          '2': baseballdiamond
          '3': beach
          '4': buildings
          '5': chaparral
          '6': denseresidential
          '7': forest
          '8': freeway
          '9': golfcourse
          '10': harbor
          '11': intersection
          '12': mediumresidential
          '13': mobilehomepark
          '14': overpass
          '15': parkinglot
          '16': river
          '17': runway
          '18': sparseresidential
          '19': storagetanks
          '20': tenniscourt
  splits:
  - name: train
    num_bytes: 438356371.8
    num_examples: 2100
  download_size: 416445676
  dataset_size: 438356371.8
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# UC Merced

<!-- Dataset thumbnail -->
![UC Merced](./thumbnail.png)

<!-- Provide a quick summary of the dataset. -->
The UC Merced Land Use dataset is a land use classification dataset of 2.1k 256x256 1ft resolution RGB images of urban locations around the U.S. extracted from the USGS National Map Urban Area Imagery collection with 21 land use classes (100 images per class).
- **Paper:** https://arxiv.org/abs/1911.06721
- **Homepage:** http://weegee.vision.ucmerced.edu/datasets/landuse.html

## Description

<!-- Provide a longer summary of what this dataset is. -->


- **Total Number of Images**: 2100
- **Bands**: 3 (RGB)
- **Image Size**: 256x256
- **Resolution**: 0.3m
- **Land Cover Classes**: 21
- **Classes**: agricultural, airplane, baseballdiamond, beach, buildings, chaparral, denseresidential, forest, freeway, golfcourse, harbor, intersection, mediumresidential, mobilehomepark, overpass, parkinglot, river, runway, sparseresidential, storagetanks, tenniscourt
- **Source**: USGS


## Usage

To use this dataset, simply use `datasets.load_dataset("blanchon/UC_Merced")`.
<!-- Provide any additional information on how to use this dataset. -->
```python
from datasets import load_dataset
UC_Merced = load_dataset("blanchon/UC_Merced")
```

## Citation 

<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
If you use the EuroSAT dataset in your research, please consider citing the following publication:


```bibtex
@article{neumann2019indomain,
  title   = {In-domain representation learning for remote sensing},
  author  = {Maxim Neumann and Andre Susano Pinto and Xiaohua Zhai and Neil Houlsby},
  year    = {2019},
  journal = {arXiv preprint arXiv: 1911.06721}
}
```