An open API service indexing awesome lists of open source software.

https://github.com/werserk/mayachallenge

Solution of my first DL competition - MayaChallenge. Task is segmentation of Maya buildings on satellite images.
https://github.com/werserk/mayachallenge

deep-learning satellite-images segmentation torch

Last synced: 3 months ago
JSON representation

Solution of my first DL competition - MayaChallenge. Task is segmentation of Maya buildings on satellite images.

Awesome Lists containing this project

README

        

# MayaChallenge

## Competition overview
Task is semantic segmentation of Maya building on satellite images.
The dataset consists of tiles derived from of Sentinel-1, Sentinel-2, and ALS (lidar) data, and associated annotation
masks. Each tile measures 240 x 240 meters and has spatial resolution of 10 meters for Sentinel data and 0.5 meters for
ALS data. The Sentinel-1 and Sentinel-2 data for each tile is stored separately in multi-band TIFF files (see data
structure).

| aguadas | platforms | buildings |
| :-----: | :-------: | :-------: |
| ![](.images/tile_44_mask_aguada.png) | ![](.images/tile_44_mask_platform.png) | ![](.images/tile_44_mask_building.png) |

## Methods

I was trying to use different models and different approaches to solve this task.

models:

- Unet
- Linknet
- FPN
- PSPNet
- DeepLabV3 (best)

losses:

- BCE
- Dice
- Focal
- IoU (best)

optimizers:

- AdamW
- SGD
- Adam (best)

## Results

I have reached these metrics and 9th place in the competition.

| Avg. IOU (overall) | Avg. IOU of aguadas | Avg. IOU of platforms| Avg. IOU of buildings |
|---|---|---|---|
| 0.7905 | 0.9718 | 0.6983 | 0.7013 |