liang xu

Results 2 comments of liang xu

@Lzc6996 gives such a solution: I have solve it. change output = utils.data_parallel(self.rnn, conv, self.ngpu) to output = self.rnn(conv) makes it work. My comments: I modified the crnn.py as above:...

@Lzc6996 I changed the code to the old version. And I modified the **crnn.py** in dir (crnn.pytorch-master/models) as you suggest: replace code: output = utils.data_parallel(self.rnn, conv, self.ngpu) as: output =...