Whenver I run any model it works fine, however running transducer gives the error in transducer_model.py
Zip object is not subscriptable, line 48
So what I do is try to cast it as list, then I get
batch[1] is out of range
I tried to manually print the contents of "batch", and for some reason they empty themselves after being printed out.
Example:
print(*batch)
->
[...][...]
print(*batch)' -> ` (nothing gets printed)