Giter Club home page Giter Club logo

Comments (1)

danielkovacsdeak avatar danielkovacsdeak commented on July 25, 2024

Hi,
Since this is in main.py it's about training. The training process uses the high resolution (HR) training images, downscales to get the low res (LR) input image, and upscales the input image to get bicubic. It doesn't do that with the full image, only a random patch of it. The patch size is a parameter of main.py (default is 40x40). The data loader picks a training HR image, downscales it by the scaling_factor to get the LR image. Then it extracts the patch from the LR image, and the corresponding larger patch from the HR image. It also upscales the small patch to get the bicubic (see dataset.py for details). The default batch is 1, so by default, it does the process with one single image in each iteration, but if you change the batch to larger numbers then obviously it repeats it that many times. In the code snippet you quoted, the data is passed from the data loader (batch) to these new variables (input, target, and bicubic).
(It also turns the data to torch's Variable class instead of eg. a numpy array or whatever the original data format is.)

from dbpn-pytorch.

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.