Open vivounicorn opened 6 years ago
May be the version of pytorch is too low.
i have the same problem on pytorch 0.1.12
@vivounicorn what version you using? @LMig2k I'd suggest updating the pytorch version if possible
i meet this problem,do you fix it?@LMig2k@vivounicorn
i meet the same error..
i try to update the version of pytorch and solve the problem
Do not use pytorch 0.1.12, its _CTC function does not have attribute apply. here is the proof. vim warp-ctc/pytorch_binding/warpctc_pytorch/init.py +60 we know that 'apply' from _CTC function, and the _CTC inherits the Function in init.py row 3, the Function imported from torch.autograd. ok, track the torch source code from the website the Function surely does not have apply attribute, we can get a compare result form pytorch 0.2.0 or 0.3.1 so I guess it's a bug here, use a higher version pytorch instead
hi @SeanNaren, there is something wrong with CTCLoss of pytorch binding: