Skip to content

Commit d89a306

Browse files
wanghaoshuangabhinavarora
authored andcommitted
Fix a wrong variable name. (#10090)
1 parent 3aacde2 commit d89a306

File tree

1 file changed

+1
-1
lines changed
  • python/paddle/fluid/layers

1 file changed

+1
-1
lines changed

python/paddle/fluid/layers/nn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2688,7 +2688,7 @@ def edit_distance(input, label, normalized=True, ignored_tokens=None,
26882688
helper.append_op(
26892689
type="sequence_erase",
26902690
inputs={"X": [label]},
2691-
outputs={"Out": [erase_label]},
2691+
outputs={"Out": [erased_label]},
26922692
attrs={"tokens": ignored_tokens})
26932693
label = erased_label
26942694

0 commit comments

Comments
 (0)