Code Monkey home page Code Monkey logo

Comments (3)

TobyPDE avatar TobyPDE commented on July 21, 2024 2

If you need further assistance with your application, feel free to email me ([email protected]).

Quick tip: If your dataset fits into the main memory, then I strongly advise you to load the entire set in advance as this might speed up training significantly.

from frrn.

gavinmh avatar gavinmh commented on July 21, 2024 1

That makes sense. Thanks @TobyPDE for your prompt help.

from frrn.

TobyPDE avatar TobyPDE commented on July 21, 2024

The architecture uses a sequence of pooling and unpooling layers. Each pooling layer reduces the spatial dimensions by a factor of two and each unpooling layer increases them by this factor. This only works if the size of your image is divisible by 2^n where n is the number of pooling layers that you use.

The provided model uses 5 pooling layers. Hence, your image dimensions should be divisible by 32. The easiest way to accomplish this is by padding your images with zeros to a size of 608x416. You can do this using numpy.pad. Alternatively, you can change the architecture to have only three instead of five pooling layers (Training will also be faster in this case).

from frrn.

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.