From c4721f5ab15a841e4d5f5e4791e49de34d333228 Mon Sep 17 00:00:00 2001 From: zchen0211 Date: Tue, 10 Oct 2017 13:46:09 -0700 Subject: [PATCH] gan design with graph --- doc/design/gan_api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/design/gan_api.md b/doc/design/gan_api.md index a1626e50d7b..f99d1e6540a 100644 --- a/doc/design/gan_api.md +++ b/doc/design/gan_api.md @@ -28,8 +28,8 @@ In our GAN design, we wrap it as a user-friendly easily customized python API to | Repmat op (done) | ? | N (Cond) |

-
-The overall running logic of GAN. The black solid arrows indicate the forward pass; the green dashed arrows indicate the backward pass of generator training; the red dashed arrows indicate the backward pass of the discriminator training. The BP pass of the green (red) arrow should only update the parameters in the green (red) boxes. +
+The overall running logic of GAN. The black solid arrows indicate the forward pass; the green dashed arrows indicate the backward pass of generator training; the red dashed arrows indicate the backward pass of the discriminator training. The BP pass of the green (red) arrow should only update the parameters in the green (red) boxes. The diamonds indicate the data providers.

-- GitLab