Skip to content

Commit

Permalink
LSTM test now uses an actual 1D vector for the bias parameter (as opp…
Browse files Browse the repository at this point in the history
…osed to a 1-column 2D matrix)
  • Loading branch information
frankseide committed Feb 7, 2016
1 parent 6887465 commit bb608f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Speech/LSTM/cntk.cntk
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ speechTrain = [
ExperimentalNetworkBuilder=[

WeightParam(m,n) = Parameter(m, n, init='uniform', initValueScale=1, initOnCPUOnly=true, randomSeed=1)
#BiasParam(m) = ParameterTensor(m, init='fixedValue', value=0.0)
BiasParam(m) = Parameter(m, 1, init='fixedValue', value=0.0)
BiasParam(m) = ParameterTensor(m, init='fixedValue', value=0.0)
#BiasParam(m) = Parameter(m, 1, init='fixedValue', value=0.0)
ScalarParam() = Parameter(1, 1, init='fixedValue', value=0.0)

NewBeta() = Exp(ScalarParam())
Expand Down

0 comments on commit bb608f8

Please sign in to comment.