Giter VIP home page Giter VIP logo

Comments (3)

sebp avatar sebp commented on August 24, 2024 1

I encountered the same issue. It also occurs when using an ImagePlayerIterator with the spatial dimensions of window_shape set to the kernel size of the first convolutional layer. In that case, conv_count will yield zero for the patch currently masked out, because the shape of the masked elements exactly matches that of the kernel size.

I'm not sure whether the fix proposed by @GlowingHorse would work. When taking the maximum, wouldn't conv_count always be the kernel size, disregarding the actual mask?

from dasp.

GlowingHorse avatar GlowingHorse commented on August 24, 2024

Seems like some zero padding makes the output conv_count of the conv operation at zero.
-> dasp/layers/convolution.py
conv_count = self._conv2d(ghost, tf.ones_like(self.kernel))

I just add this
conv_count = tf.maximum(conv_count, tf.reduce_sum(tf.ones_like(self.kernel)))
after it. Is it same with your original thought?

from dasp.

marcoancona avatar marcoancona commented on August 24, 2024

Hi! It is still not clear to me how the result conv_count can be zero because both the input (ghost) and the kernel are made of ones.

EDIT: I did not see your mention to zero-padding. Your solution seems to make sense indeed.

from dasp.

Related Issues (5)

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.