Code Monkey home page Code Monkey logo

advanced-tensorflow's Issues

something issues about srgan

Hi, writer. I am impressed with your code of srgan. But, I have some questions here.

  1. At the function of setup_inputs, I can't understand why you need to crop the image data.
  2. Why you use the queue format data image instead of np.array format.

I am looking forward to your reply.

CONVOLUTIONAL AUTOENCODER (CAE) conv-encode Layer

In creating the 3 convolutional encoding layer you accidentally save the dropout of this layer to the wrong name

` _ce3 = tf.nn.sigmoid(tf.add(tf.nn.conv2d(_ce2, _W['ce3']
, strides=[1, 2, 2, 1], padding='SAME'), _b['be3']))

_ce1 = tf.nn.dropout(_ce3, _keepprob)`

When it should be

` _ce3 = tf.nn.sigmoid(tf.add(tf.nn.conv2d(_ce2, _W['ce3']
, strides=[1, 2, 2, 1], padding='SAME'), _b['be3']))

_ce3 = tf.nn.dropout(_ce3, _keepprob)`

Probably doesn't affect performance, as it just skips the drop out for one layer. But still, though it would be nice to point this out.

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.