Skip to content

Commit

Permalink
Simplified example
Browse files Browse the repository at this point in the history
  • Loading branch information
wilrich-msft committed May 30, 2016
1 parent 726af5c commit f159271
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrib/Python/cntk/examples/LSTM/seqcla.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ def seqcla():
# add a softmax layer on top
w = C.parameter((num_labels, output_dim), name='w')
b = C.parameter((num_labels), name='b')
z = C.plus(C.times(w, L), b, name='z')
z = C.times(w, L) + b
z.name='z'
z.tag = "output"

# and reconcile the shared dynamic axis
Expand Down

0 comments on commit f159271

Please sign in to comment.