From 37b69f04f881b87455384d0b7a76e59663b15fcc Mon Sep 17 00:00:00 2001 From: Vedanta Jha Date: Thu, 4 Oct 2018 13:39:03 +0530 Subject: [PATCH] Update eICU_synthetic_dataset_generation.py --- eICU_synthetic_dataset_generation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eICU_synthetic_dataset_generation.py b/eICU_synthetic_dataset_generation.py index bc14f29..15ef5b1 100644 --- a/eICU_synthetic_dataset_generation.py +++ b/eICU_synthetic_dataset_generation.py @@ -131,7 +131,7 @@ def discriminator(x, c, reuse=False): cell=cell, dtype=tf.float32, inputs=decoder_input) - rnn_outputs_flat = tf.reshape(rnn_outputs, [-1, hidden_units_g]) + rnn_outputs_flat = tf.reshape(rnn_outputs, [-1, hidden_units_d]) logits = tf.matmul(rnn_outputs_flat, W_out_D) + b_out_D output = tf.nn.sigmoid(logits) return output, logits