Joint-Slot-Filling icon indicating copy to clipboard operation
Joint-Slot-Filling copied to clipboard

hidden = self.init_hidden(input)初始化

Open chl916185 opened this issue 5 years ago • 0 comments

def forward(self, input, input_masking): """ input : B,T input_masking : B,T output : B,T,D B,1,D """ hidden = self.init_hidden(input) 这个地方每次读入新的数据都被初始化为0有问题吧,应该写到 __init__函数中吧 @pengshuang

chl916185 avatar Feb 18 '19 03:02 chl916185