Fix text regarding input noise is sampled from a normal distribution

This commit is contained in:
margaretmz 2018-10-24 10:53:50 -07:00
parent 5c7cdb2ec9
commit 459bfb3b32

View File

@ -538,7 +538,7 @@
"cell_type": "code",
"source": [
"def train_step(images):\n",
" # generating noise from a uniform distribution\n",
" # generating noise from a normal distribution\n",
" noise = tf.random_normal([BATCH_SIZE, noise_dim])\n",
" \n",
" with tf.GradientTape() as gen_tape, tf.GradientTape() as disc_tape:\n",