From 63912dcc198729b5e29e9080da6d76e649fd9394 Mon Sep 17 00:00:00 2001 From: zchen0211 Date: Mon, 9 Oct 2017 17:09:04 -0700 Subject: [PATCH] gan design --- doc/design/gan_api.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/design/gan_api.md b/doc/design/gan_api.md index 689f3595640..1a7d0df1160 100644 --- a/doc/design/gan_api.md +++ b/doc/design/gan_api.md @@ -262,3 +262,7 @@ if __name__ == "__main__": sess.run(g_step, feed_dict = {dcgan.z: batch_z}) ``` + +# More thinking about dependency engine v.s. block design: +- What if we just want to run an intermediate result? Do we need to run the whole block/graph? +- Should we call eval() to get the fake images in the first stage? And then train the discriminator in the second stage? -- GitLab