Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Open solution to the Mapping Challenge 🌎

License

NotificationsYou must be signed in to change notification settings

neptune-ai/open-solution-mapping-challenge

Gitterlicense

Note

Unfortunately, we can no longer provide support for this repo. Hopefully, it should still work, but if it doesn't, we cannot really help.

More competitions 🎇

Check collection ofpublic projects 🎁, where you can find multiple Kaggle competitions with code, experiments and outputs.

Poster 🌍

Poster that summarizes our project isavailable here.

Intro

Open solution to theCrowdAI Mapping Challenge competition.

  1. Checklive preview of our work on public projects page:Mapping Challenge📈.
  2. Source code andissues are publicly available.

Results

0.943Average Precision 🚀

0.954Average Recall 🚀

No cherry-picking here, I promise 😉. The results exceded our expectations. The output from the network is so good that not a lot of morphological shenanigans is needed. Happy days:)

Average Precision and Average Recall were calculated onstage 1 data usingpycocotools. Check thisblog post for average precision explanation.

Disclaimer

In this open source solution you will find references to the neptune.ai. It is free platform for community Users, which we use daily to keep track of our experiments. Please note that using neptune.ai is not necessary to proceed with this solution. You may run it as plain Python script 😉.

Reproduce it!

CheckREPRODUCE_RESULTS

Solution write-up

Pipeline diagram

Preprocessing

✔️ What Worked

  • Overlay binary masks for each image is produced (code 💻).
  • Distances to the two closest objects are calculated creating the distance map that is used for weighing (code 💻).
  • Size masks for each image is produced (code 💻).
  • Dropped small masks on the edges (code 💻).
  • We load training and validation data in batches: usingtorch.utils.data.Dataset andtorch.utils.data.DataLoader makes it easy and clean (code 💻).
  • Only some basic augmentations (due to speed constraints) from theimgaug package are applied to images (code 💻).
  • Image is resized before feeding it to the network. Surprisingly this worked better than cropping (code 💻 andconfig 📑).

✖️ What didn't Work

  • Ground truth masks are prepared by first eroding them per mask creating non overlapping masks and only after that the distances are calculated (code 💻).
  • Dilated small objects to increase the signal (code 💻).
  • Network is fed with random crops (code 💻 andconfig 📑).

🤔 What could have worked but we haven't tried it

Network

✔️ What Worked

  • Unet with Resnet34, Resnet101 and Resnet152 as an encoder where Resnet101 gave us the best results. This approach is explained in theTernausNetV2 paper (ourcode 💻 andconfig 📑). Also take a look at our parametrizableimplementation of the U-Net.

✖️ What didn't Work

  • Network architecture based on dilated convolutions described inthis paper.

🤔 What could have worked but we haven't tried it

  • Unet with contextual blocks explained inthis paper.

Loss function

✔️ What Worked

  • Distance weighted cross entropy explained in the famousU-Net paper (ourcode 💻 andconfig 📑).
  • Using linear combination of soft dice and distance weighted cross entropy (code 💻 andconfig 📑).
  • Adding component weighted by building size (smaller buildings has greater weight) to the weighted cross entropy that penalizes misclassification on pixels belonging to the small objects (code 💻).

Weights visualization

For both weights: the darker the color the higher value.

  • distance weights: high values corresponds to pixels between buildings.
  • size weights: high values denotes small buildings (the smaller the building the darker the color). Note that no-building is fixed to black.

Training

✔️ What Worked

  • Use pretrained models!
  • Our multistage training procedure:
    1. train on a 50000 examples subset of the dataset withlr=0.0001 anddice_weight=0.5
    2. train on a full dataset withlr=0.0001 anddice_weight=0.5
    3. train with smallerlr=0.00001 anddice_weight=0.5
    4. increase dice weight todice_weight=5.0 to make results smoother
  • Multi-GPU training
  • Use very simple augmentations

The entire configuration can be tweaked from theconfig file 📑.

🤔 What could have worked but we haven't tried it

  • Set different learning rates to different layers.
  • Use cyclic optimizers.
  • Use warm start optimizers.

Postprocessing

✔️ What Worked

  • Test time augmentation (tta). Make predictions on image rotations (90-180-270 degrees) and flips (up-down, left-right) and take geometric mean on the predictions (code 💻 andconfig 📑).
  • Simple morphological operations. At the beginning we used erosion followed by labeling and per label dilation with structure elements chosed by cross-validation. As the models got better, erosion was removed and very small dilation was the only one showing improvements (code 💻).
  • Scoring objects. In the beginning we simply used score1.0 for every object which was a huge mistake. Changing that to average probability over the object region improved results. What improved scores even more was weighing those probabilities with the object size (code 💻).
  • Second level model. We tried Light-GBM and Random Forest trained on U-Net outputs and features calculated during postprocessing.

✖️ What didn't Work

  • Test time augmentations by using colors (config 📑).
  • Inference on reflection-padded images was not a way to go. What worked better (but not for the very best models) was replication padding where border pixel value was replicated for all the padded regions (code 💻).
  • Conditional Random Fields. It was so slow that we didn't check it for the best models (code 💻).

🤔 What could have worked but we haven't tried it

  • Ensembling
  • Recurrent neural networks for postprocessing (instead of our current approach)

Model Weights

Model weights for the winning solution are availablehere

You can use those weights and run the pipeline as explained inREPRODUCE_RESULTS.

User support

There are several ways to seek help:

  1. crowdaidiscussion.
  2. You can submit anissue directly in this repo.
  3. Join us onGitter.

Contributing

  1. CheckCONTRIBUTING for more information.
  2. Checkissues to check if there is something you would like to contribute to.

Packages

No packages published

Contributors7


[8]ページ先頭

©2009-2025 Movatter.jp