Git Product home page Git Product logo

cl-mvsnet's People

Contributors

kaiqiangxiong 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  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cl-mvsnet's Issues

too much memory

Thank you for your excellent work, but your method requires too much gpu memory. Have you tested whether training with 96g of gpu memory can achieve a similar reconstruction effect?

ICC looks wrong

When re-training, I get 0.339 overall on DTU instead of the reported 0.329 (using default settings, 8 GPUs). The ICC masking implementation here doesn't look quite right to me - imgs_icc is shape [B, V, 3, H, W], so for batch size 1, the for-loop doesn't actually have any iterations. Should it perhaps be changed to:

imgs_icc = data["imgs_aug"] # b v c h w
nviews = imgs_icc.shape[1]
for view_idx in range(1, nviews, 1):   # loops through view dimension instead of batch dimension
    per = min(self.args.p_icc * epoch / 15, self.args.p_icc)
    mask = torch.ones_like(imgs_icc[:, view_idx]) * per
    mask = 1 - mask.bernoulli() 
    imgs_icc[:, view_idx] = imgs_icc[:, view_idx] * mask

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.