From 67c77b57fc8ad8eff7e9e46e842aa54b1e39047a Mon Sep 17 00:00:00 2001 From: zchen0211 Date: Mon, 9 Oct 2017 16:47:05 -0700 Subject: [PATCH] gan api --- doc/design/gan_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/design/gan_api.md b/doc/design/gan_api.md index ed7622920be..689f3595640 100644 --- a/doc/design/gan_api.md +++ b/doc/design/gan_api.md @@ -206,7 +206,7 @@ class DCGAN(object): self.d_loss = self.d_loss_real + self.d_loss_fake ``` Some small confusion and problems with this design: -- D\_g and D\_f are actually the same thing, but has to be written twice; +- D\_g and D\_f are actually the same thing, but has to be written twice; i.e., if we want to run two sub-graphs conceptually, the same codes have to be written twice if they are shared by the graph. - Requires ability to create a block anytime, rather than in if-else or rnn only; ## Main function for the demo: -- GitLab