nave cohen
commited on
Commit
•
b8019de
1
Parent(s):
31907ff
add configuration file
Browse files- README.md +0 -25
- dataset_config.yaml +23 -0
README.md
CHANGED
@@ -15,28 +15,3 @@ This dataset is part of the Urban Climate project. It contains satellite images
|
|
15 |
- **test/**: Contains test images and masks to evaluate the model.
|
16 |
- **test/Image/**: Satellite images for testing.
|
17 |
- **test/Mask/**: Test masks corresponding to the images.
|
18 |
-
|
19 |
-
---
|
20 |
-
|
21 |
-
configs:
|
22 |
-
- name: urban_climate_building_detection
|
23 |
-
description: |
|
24 |
-
This dataset is designed for the task of building detection in urban environments using image segmentation. It includes high-resolution aerial or satellite images of urban areas, paired with corresponding segmentation masks that delineate building footprints.
|
25 |
-
data_files:
|
26 |
-
- split: train
|
27 |
-
path: "data/train/metadata.csv"
|
28 |
-
- split: validation
|
29 |
-
path: "data/validation/metadata.csv"
|
30 |
-
- split: test
|
31 |
-
path: "data/test/metadata.csv"
|
32 |
-
features:
|
33 |
-
image:
|
34 |
-
dtype: image
|
35 |
-
description: High-resolution input images of urban environments.
|
36 |
-
mask:
|
37 |
-
dtype: image
|
38 |
-
description: Binary segmentation masks corresponding to each input image.
|
39 |
-
license: CC BY-SA 4.0
|
40 |
-
citation: |
|
41 |
-
@article{your_citation}
|
42 |
-
|
|
|
15 |
- **test/**: Contains test images and masks to evaluate the model.
|
16 |
- **test/Image/**: Satellite images for testing.
|
17 |
- **test/Mask/**: Test masks corresponding to the images.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dataset_config.yaml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: urban_climate_building_detection
|
2 |
+
description: |
|
3 |
+
This dataset is designed for the task of building detection in urban environments using image segmentation. It includes high-resolution aerial or satellite images of urban areas, paired with corresponding segmentation masks that delineate building footprints.
|
4 |
+
|
5 |
+
data_files:
|
6 |
+
- split: train
|
7 |
+
path: "data/train/metadata.csv"
|
8 |
+
- split: validation
|
9 |
+
path: "data/validation/metadata.csv"
|
10 |
+
- split: test
|
11 |
+
path: "data/test/metadata.csv"
|
12 |
+
|
13 |
+
features:
|
14 |
+
image:
|
15 |
+
dtype: image
|
16 |
+
description: High-resolution input images of urban environments.
|
17 |
+
mask:
|
18 |
+
dtype: image
|
19 |
+
description: Binary segmentation masks corresponding to each input image.
|
20 |
+
|
21 |
+
license: CC BY-SA 4.0
|
22 |
+
citation: |
|
23 |
+
@article{your_citation}
|