nave cohen commited on
Commit
d1256d2
1 Parent(s): 743d90f

add configurations

Browse files
Files changed (2) hide show
  1. dataset_infos.json +0 -17
  2. readme.md +41 -0
dataset_infos.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "urban-climate-building detection": {
3
- "description": "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. The dataset is structured into training, validation, and test sets, and is suitable for developing and evaluating models for urban climate analysis and automated building detection.",
4
- "features": {
5
- "image": {
6
- "dtype": "image",
7
- "description": "High-resolution input images of urban environments, containing various building structures. These images serve as the input for segmentation models to detect and outline building footprints."
8
- },
9
- "mask": {
10
- "dtype": "image",
11
- "description": "Binary segmentation masks corresponding to each input image. Each mask highlights the building footprints, where the buildings are marked in one color (e.g., white) and the background is marked in another color (e.g., black). These masks are used as ground truth for training and evaluating segmentation models."
12
- }
13
- },
14
- "license": "CC BY-SA 4.0",
15
- "citation": "@article{your_citation}"
16
- }
17
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Urban Climate Dataset
2
+
3
+ ## Dataset Description
4
+
5
+ This dataset is part of the Urban Climate project. It contains satellite images of urban areas and corresponding segmentation masks that are used for building detection and segmentation tasks.
6
+
7
+ ### Files and Structure:
8
+
9
+ - **train/**: Contains training images and masks.
10
+ - **train/Image/**: Original satellite images used for training.
11
+ - **train/Mask/**: Binary masks where buildings are labeled.
12
+ - **validation/**: Contains validation images and masks for model evaluation.
13
+ - **validation/Image/**: Satellite images for validation.
14
+ - **validation/Mask/**: Validation masks corresponding to the 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
+
23
+ - name: urban_climate_building_detection
24
+ description: |
25
+ 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.
26
+ data_files:
27
+ train: - data/train/Image/_.png - data/train/Mask/_.png
28
+ validation: - data/validation/Image/_.png - data/validation/Mask/_.png
29
+ test: - data/test/Image/_.png - data/test/Mask/_.png
30
+ features:
31
+ image:
32
+ dtype: image
33
+ description: High-resolution input images of urban environments.
34
+ mask:
35
+ dtype: image
36
+ description: Binary segmentation masks corresponding to each input image.
37
+ license: CC BY-SA 4.0
38
+ citation: |
39
+ @article{your_citation}
40
+
41
+ ---