Skip to content

Commit

Permalink
Fix invalid evaluation summary
Browse files Browse the repository at this point in the history
WIP (#3)

* The wrong summary was used in the eval metrics.
  • Loading branch information
yweweler committed Nov 28, 2018
1 parent e98769b commit 0d60746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tacotron/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ def model_fn(self, features, labels, mode, params):
)
elif mode == tf.estimator.ModeKeys.EVAL:
eval_metrics_ops = {
'mean_loss': tf.metrics.mean(self.loss_op_decoder,
'mean_loss': tf.metrics.mean(self.loss_op,
name='mean_loss'),
'mean_decoder_loss': tf.metrics.mean(self.loss_op_decoder,
name='mean_decoder_loss'),
Expand Down

0 comments on commit 0d60746

Please sign in to comment.