crnn icon indicating copy to clipboard operation
crnn copied to clipboard

are you BiRnnJoin right ?

Open Duum opened this issue 7 years ago • 0 comments

I find a interesting place , in your implement of BLSTM ,:

    local fwdProj = nn.Linear(nIn, nOut)(fwdX)
    local bwdProj = nn.Linear(nIn, nOut)(bwdX)

    local output = nn.CAddTable()({fwdProj, bwdProj})

I see you add two Linear unit of fwax and bwdX,But in the other implement , they are concatenate and fully connect to output layer. is there somthing wrong ? thank you

Duum avatar Mar 17 '17 08:03 Duum