diff --git a/doc/design/gan_api.md b/doc/design/gan_api.md index 689f3595640a07d9fa71d3f8139d62e18bfa267b..1a7d0df1160b4c74392f9ff698b2ccd1ab3226aa 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?