Giter VIP home page Giter VIP logo

Comments (4)

zlckanata avatar zlckanata commented on July 20, 2024

There is no script for computing IoU or mIoU in this repository. Computing IoU using numpy just like this.
def iou(a, b): a //= 255 b //= 255 o = a+b i = (o==2).sum() u = (o>=1).sum() if u == 0: return 1.0 return 1.0*i/u
image

from deepglobe-road-extraction-challenge.

rahul-nt avatar rahul-nt commented on July 20, 2024

Thanks for the reply.

Another question: how did you do the validation if the validation masks are not available in the dataset?
(I had also seen the same question of yours on the DeepGlobe forum, but there was no reply there)

from deepglobe-road-extraction-challenge.

zlckanata avatar zlckanata commented on July 20, 2024

For your question, I did not validate my models in the final phase.

I tried several methods in the development phase, and found that D-LinkNet34 is better than the ensemble of LinkNet34 and Unet on the validation set.
Therefore, I trained D-LinkNet50, D-LinkNet101 and D-Unet in the final phase, and submitted the predictions on the test set only.

It would be more standard to use some kind of validation such as cross-validation. However, due to the time limitation and no many training images, I did not partition some of the data as validation set.

from deepglobe-road-extraction-challenge.

rahul-nt avatar rahul-nt commented on July 20, 2024

@zlkanata
Thanks for the help!

from deepglobe-road-extraction-challenge.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.