I want to implement CNN_BLSTM_CTC with CUDNN, but an error arise:
Traceback (most recent call last):
File "/home/Documents/MyCode/VLPR/view.py", line 25, in
output = CNN_MultiBLSTM_CTC_CUDNN…
Here is my code
```
def cnn(indata, fix_gamma = False):
"""cnn for first stage that extract feature for the input of RNN"""
#first pooling
conv1 = mx.symbol.Convolution(data=indat…