Datasets:
chilly-magician
commited on
Commit
•
db5d191
1
Parent(s):
c78033d
Update README.md
Browse files
README.md
CHANGED
@@ -34,4 +34,64 @@ tags:
|
|
34 |
pretty_name: Merged Remote Landscapes v1.0.0
|
35 |
size_categories:
|
36 |
- 10K<n<100K
|
37 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
pretty_name: Merged Remote Landscapes v1.0.0
|
35 |
size_categories:
|
36 |
- 10K<n<100K
|
37 |
+
---
|
38 |
+
|
39 |
+
# Dataset Card for Merged Remote Landscapes dataset
|
40 |
+
|
41 |
+
[![version](https://img.shields.io/badge/version-0.0.1-orange.svg)]()
|
42 |
+
|
43 |
+
## Dataset summary
|
44 |
+
|
45 |
+
This is a merged version of following datasets:
|
46 |
+
* [torchgeo/ucmerced](https://huggingface.co/datasets/torchgeo/ucmerced)
|
47 |
+
* [NWPU-RESISC45](https://huggingface.co/datasets/jonathan-roberts1/NWPU-RESISC45)
|
48 |
+
|
49 |
+
```python
|
50 |
+
from datasets import load_dataset
|
51 |
+
|
52 |
+
dataset = load_dataset('EmbeddingStudio/merged_remote_landscapes_v1')
|
53 |
+
```
|
54 |
+
|
55 |
+
### Categories
|
56 |
+
|
57 |
+
This is a union of categories from original datasets:
|
58 |
+
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
|
59 |
+
|
60 |
+
Warning: Synonymous and ambiguous categories were combined (see "Merge method").
|
61 |
+
|
62 |
+
## Motivation
|
63 |
+
|
64 |
+
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.
|
65 |
+
|
66 |
+
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.
|
67 |
+
|
68 |
+
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.
|
69 |
+
|
70 |
+
We provide this dataset on HuggingFace, so anyone can reproduce our results.
|
71 |
+
|
72 |
+
Check our repositories to get more details:
|
73 |
+
* EmbeddingStudio Framework (coming soon at 22.12.2023)
|
74 |
+
* Experiments (coming soon)
|
75 |
+
|
76 |
+
## Merge method
|
77 |
+
|
78 |
+
For this type of dataset it's all simple:
|
79 |
+
1. Remove duplicates.
|
80 |
+
2. Resolve synonymous and ambiguous categories with using a simple map (CATEGORIES_MAPPING).
|
81 |
+
|
82 |
+
```python
|
83 |
+
CATEGORIES_MAPPING = {
|
84 |
+
"dense residential": "residential",
|
85 |
+
"medium residential": "residential",
|
86 |
+
"mobile home park": "residential",
|
87 |
+
"sparse residential": "residential",
|
88 |
+
"storage tank": "storage tanks",
|
89 |
+
"storage tanks": "storage tanks",
|
90 |
+
}
|
91 |
+
```
|
92 |
+
|
93 |
+
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.
|
94 |
+
|
95 |
+
## Contact info
|
96 |
+
|
97 |
+
* Alexander Yudaev [[email protected] ](email) [https://www.linkedin.com/in/alexanderyudaev/](LinkedIn)
|