Code Monkey home page Code Monkey logo

deep-super-resolution-research's Introduction

Deep-Super-Resolution-Research

This repository contains all the work done , observations noted and models worked upon during my internship at Indian Institute of Technology Gandhinagar under Dr. Ravi S. Hegde. My Research focus was on Image SuperResolution using Deep Learning. Most of my work involved exploring existing solutions and analysing and study their approach. The work was concluded with a Progressive Upsacalling methods using RDNSR with VGG Perceptual Loss for generating high resolution images. The Progressive upscalling can upscale to very high resolution given the RDNSR base network.

Report Document For the Inernship submitted in college : Report on Deep Super Resolution

  • Most of my scripts follow a common pattern and can be understood from these repositories.
    RNSR Keras
    DBPN-SR Keras
  • The networks given here were worked on 3 Nvidia GTX 1070s with data parallelism in Keras multi gpu mode for training.
  • Some of the folder may contain observational notes. These were noted during training.
  • The Deep Prior network is not adhering to the original paper. I though of creating residual connections between encoder and decoder network layers thinking it would work out well. It did but only for noise reduction purpose. Also I did not realise this was a U-net architecture.

deep-super-resolution-research's People

Contributors

rajatkb avatar

Stargazers

Satyajit Kundu avatar Anuj Badhwar avatar  avatar

Watchers

 avatar

deep-super-resolution-research's Issues

Code isuue

if scale >= 2:
output = Subpixel(64, (3,3), r = 2,padding='same',activation='relu')(output)
if scale >= 4:
output = Subpixel(64, (3,3), r = 2,padding='same',activation='relu')(output)
if scale >= 8:
output = Subpixel(64, (3,3), r = 2,padding='same',activation='relu')(output)

All the three lines are same.

Isn't it

output = Subpixel(64, (3, 3), r=scale, padding='same', activation='relu')(output) ?

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.