Skip to content

Commit

Permalink
Merge pull request #12672 from raphael-sch/master
Browse files Browse the repository at this point in the history
Fixing typo in default_name argument for name_scope
  • Loading branch information
sb2nov authored Sep 28, 2017
2 parents 8ec1eb4 + fe933ea commit 2db0279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/contrib/seq2seq/python/ops/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def sample(self, time, outputs, state, name=None):
gen_array_ops.fill([self.batch_size], -1))

def next_inputs(self, time, outputs, state, sample_ids, name=None):
with ops.name_scope(name, "ScheduledEmbeddingTrainingHelperSample",
with ops.name_scope(name, "ScheduledEmbeddingTrainingHelperNextInputs",
[time, outputs, state, sample_ids]):
(finished, base_next_inputs, state) = (
super(ScheduledEmbeddingTrainingHelper, self).next_inputs(
Expand Down

0 comments on commit 2db0279

Please sign in to comment.