nave cohen
commited on
Commit
·
2bde5aa
1
Parent(s):
2791a55
initial commit: readme added
Browse files- .gitignore +5 -0
- README.md +43 -0
.gitignore
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.py
|
2 |
+
Test
|
3 |
+
Val
|
4 |
+
Train
|
5 |
+
data
|
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
configs:
|
3 |
+
- config_name: default
|
4 |
+
data_files:
|
5 |
+
- split: train
|
6 |
+
path: "data/train.parquet"
|
7 |
+
- split: validation
|
8 |
+
path: "data/validation.parquet"
|
9 |
+
- split: test
|
10 |
+
path: "data/test.parquet"
|
11 |
+
dataset_info:
|
12 |
+
features:
|
13 |
+
- name: image
|
14 |
+
dtype: image
|
15 |
+
- name: mask
|
16 |
+
dtype: image
|
17 |
+
---
|
18 |
+
|
19 |
+
# Urban Climate Dataset
|
20 |
+
|
21 |
+
## Dataset Description
|
22 |
+
|
23 |
+
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.
|
24 |
+
|
25 |
+
### Files and Structure:
|
26 |
+
|
27 |
+
- **train.parquet**: Contains the training images and masks in a parquet format.
|
28 |
+
- **validation.parquet**: Contains the validation images and masks in a parquet format for model evaluation.
|
29 |
+
- **test.parquet**: Contains the test images and masks in a parquet format to evaluate the model.
|
30 |
+
|
31 |
+
Each parquet file includes:
|
32 |
+
|
33 |
+
- **image**: The original satellite image used for the respective split (train, validation, or test).
|
34 |
+
- **mask**: The binary mask where buildings are labeled, corresponding to the image.
|
35 |
+
|
36 |
+
### Dataset Details:
|
37 |
+
|
38 |
+
- **Images**: High-resolution satellite images of urban environments.
|
39 |
+
- **Masks**: Binary segmentation masks that indicate building footprints.
|
40 |
+
|
41 |
+
### Usage:
|
42 |
+
|
43 |
+
This dataset is intended for tasks such as building detection and segmentation in urban areas using machine learning and computer vision techniques.
|