nave cohen commited on
Commit
3489208
1 Parent(s): cdeb9b6

Update dataset documentation and metadata

Browse files

- Modified data/readme.md with improved dataset descriptions and instructions.
- Added dataset.csv mapping images to their corresponding segmentation masks.
- Added dataset_infos.json with detailed dataset metadata and feature descriptions.

Files changed (3) hide show
  1. data/readme.md +32 -0
  2. dataset.csv +0 -0
  3. dataset_infos.json +17 -0
data/readme.md CHANGED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: "data/train/\*"
27
+ - split: validation
28
+ path: "data/validation/\*"
29
+ - split: test
30
+ path: "data/test/\*"
31
+
32
+ ---
dataset.csv ADDED
The diff for this file is too large to render. See raw diff
 
dataset_infos.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }