Code Monkey home page Code Monkey logo

Comments (9)

eriklindernoren avatar eriklindernoren commented on May 13, 2024

Hi, thanks! I'm assuming you're referring to DCGAN? If so hopefully all you need to do is change:
model.add(Conv2D(1, kernel_size=3, padding="same"))
to
model.add(Conv2D(self.channels, kernel_size=3, padding="same"))
on line 67.

from keras-gan.

0AlvinLO0 avatar 0AlvinLO0 commented on May 13, 2024

oh yeah dcgan, yes the network works, thanks a lot for your help~~

from keras-gan.

flyfj avatar flyfj commented on May 13, 2024

the input dimension for cifar (32) is different from mnist (28), how can it be changed to generate that size?

from keras-gan.

eriklindernoren avatar eriklindernoren commented on May 13, 2024

Change
self.img_rows = 28
self.img_cols = 28
self.channels = 1
to
self.img_rows = 32
self.img_rows = 32
self.channels = 3
and also make the changes I suggested in my answer above.

from keras-gan.

flyfj avatar flyfj commented on May 13, 2024

thanks for the reply.
i think i also need to modify 'model.add(Dense(128 * 8 * 8))' to make the generator produce 32x32 image, otherwise it produces 28x28. is that expected?

from keras-gan.

eriklindernoren avatar eriklindernoren commented on May 13, 2024

Yeah, that is correct. Change these lines:
model.add(Dense(128 * 7 * 7, activation="relu", input_shape=noise_shape))
model.add(Reshape((7, 7, 128)))
to
model.add(Dense(128 * 8 * 8, activation="relu", input_shape=noise_shape))
model.add(Reshape((8, 8, 128)))

from keras-gan.

flyfj avatar flyfj commented on May 13, 2024

is there a formula to calculate the layer dimension given an arbitrary input image size? what reference/paper do you use to implement the network?

from keras-gan.

eriklindernoren avatar eriklindernoren commented on May 13, 2024

A suggestion I often see is to start with a shallow network, get something that works and then expand on that. There is no recipe when it comes to building the network's architecture that guarantees good results though, and it's extra tricky when it comes to GANs. For this example I build the network based of the architecture in the paper and some experimentation. I can recommend this page: https://github.com/soumith/ganhacks (from one of the authors of DCGAN).

from keras-gan.

flyfj avatar flyfj commented on May 13, 2024

thanks for the guide, very helpful. agree on starting with shallow ones that could fit the data first.
excellent work on the implementation!

from keras-gan.

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.