From ed4eaaf32f343d2cbc83bb030cd279a43dd87db4 Mon Sep 17 00:00:00 2001 From: Kim Seonghyun Date: Thu, 1 Feb 2018 17:22:53 +0900 Subject: [PATCH] Fix typo Signed-off-by: Kim Seonghyun --- model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model.py b/model.py index 8ca635b..e406ca5 100644 --- a/model.py +++ b/model.py @@ -39,7 +39,7 @@ def __init__(self, config, self.recon_weight = tf.placeholder_with_default( tf.cast(1.0, tf.float32), []) - tf.summary.scalar("loss/recon_wieght", self.recon_weight) + tf.summary.scalar("loss/recon_weight", self.recon_weight) self.build(is_train=is_train)