chilly-magician commited on
Commit
c78033d
1 Parent(s): 5b5a641

Update README.md

Browse files

# Dataset Card for Merged Remote Landscapes dataset

[![version](https://img.shields.io/badge/version-0.0.1-orange.svg)]()

## Dataset summary

This is a merged version of following datasets:
* [torchgeo/ucmerced](https://huggingface.co/datasets/torchgeo/ucmerced)
* [NWPU-RESISC45](https://huggingface.co/datasets/jonathan-roberts1/NWPU-RESISC45)

```python
from datasets import load_dataset

dataset = load_dataset('EmbeddingStudio/merged_remote_landscapes_v1')
```

### Categories

This is a union of categories from original datasets:
agricultural, airplane, airport, baseball diamond, basketball court, beach, bridge, buildings, chaparral, church, circular farmland, cloud, commercial area, desert, forest, freeway, golf course, ground track field, harbor, industrial area, intersection, island, lake, meadow, mountain, overpass, palace, parking lot, railway, railway station, rectangular farmland, residential, river, roundabout, runway, sea ice, ship, snowberg, stadium, storage tanks, tennis court, terrace, thermal power station, wetland

Warning: Synonymous and ambiguous categories were combined (see "Merge method").

## Motivation

EmbeddingStudio is the open-source framework, that allows you transform a joint "Embedding Model + Vector DB" into a full-cycle search engine: collect clickstream -> improve search experience-> adapt embedding model and repeat out of the box.

In the development of EmbeddingStudio the scientific approach is a backbone. On the early stage of the development we can't collect real clickstream data, so to do experiments and choose the best way to improve embedding model we had to use synthetic or emulated data. And the first step is to use the most transparent datasets and the easiest domain.

P.S. this dataset is tagged to be used for the image classification task, but in fact we use it for the metric learning task. And we do another step to emulate clickstream.

We provide this dataset on HuggingFace, so anyone can reproduce our results.

Check our repositories to get more details:
* EmbeddingStudio Framework (coming soon at 22.12.2023)
* Experiments (coming soon)

## Merge method

For this type of dataset it's all simple:
1. Remove duplicates.
2. Resolve synonymous and ambiguous categories with using a simple map (CATEGORIES_MAPPING).

```python
CATEGORIES_MAPPING = {
"dense residential": "residential",
"medium residential": "residential",
"mobile home park": "residential",
"sparse residential": "residential",
"storage tank": "storage tanks",
"storage tanks": "storage tanks",
}
```

All details and code base of merging algorithm will be provided in our experiments repository. If you have any suggestion or you find some mistakes, we will be happy to fix it, so our experimental data will have better quality.

## Contact info

* Alexander Yudaev [alexander@yudaev.ru ](email) [https://www.linkedin.com/in/alexanderyudaev/](LinkedIn)

Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -24,4 +24,14 @@ configs:
24
  path: data/train-*
25
  - split: test
26
  path: data/test-*
27
- ---
 
 
 
 
 
 
 
 
 
 
 
24
  path: data/train-*
25
  - split: test
26
  path: data/test-*
27
+ task_categories:
28
+ - image-classification
29
+ tags:
30
+ - landscapes
31
+ - geo
32
+ - remote photos
33
+ - metric learning
34
+ pretty_name: Merged Remote Landscapes v1.0.0
35
+ size_categories:
36
+ - 10K<n<100K
37
+ ---