Coder Social home page Coder Social logo

bsuv-net-2.0's People

Contributors

net-mist avatar ozantezcan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

bsuv-net-2.0's Issues

Contributing to this repo

Hello !
First of all, thanks a lot for this great repository!
I am looking for a model to do background-subtraction in real time. This repository seems perfect, and I would like to improve it for my needs.
Some of the work I will do in my fork may be useful for other people, so I would like to know your politic regarding Pull requests and contributions. Are you interested by:

  • having a dockerfile ?
  • having new models ? For now only unet_vgg16 is implemented, but I would like to test other architectures that may run in real time on CPU (maybe something like unet_mobilenet). BTW, did you test other architectures ?
  • having some proposal for code organization, cleaning, small changes, .... ?

Also for now the code doesn't have any license yet, so it is not Open Source (see https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/licensing-a-repository#choosing-the-right-license). Are you planning to add a License soon ?

thanks a lot

f score

Hi
Are the input for f_score function correct?!
Shouldn't the predicted values โ€‹โ€‹be rounded to calculate f_score ?

def f_score(true, pred):
    fn = torch.sum(true * (1 - pred))
    fp = torch.sum((1 - true) * pred)
    tp = torch.sum(true * pred)
    prec = tp / (tp + fp)
    recall = tp / (tp + fn)

Pretrained models

Thanks for the great work!

Is this the official implementation of BSUV-NET 2.0?
Are there pretrained BSUV-NET 2.0 and fast BSUV-NET 2.0 that I can quickly test on my own data?

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.