CNN_LSTM_CTC_Tensorflow
CNN_LSTM_CTC_Tensorflow copied to clipboard
Helper.py error
Hey guys
Recently i have been trying to work with this network but when i want to prepare the data using helper.py i encounter some errors. I have not done any modifications on this file except the images and label paths, and that's all. Here is the error i get after running the script. I would appreciate if anyone could help me with this:
Traceback (most recent call last):
File "helper.py", line 116, in
I had the same error. It's because you have labels.txt in the same folder as the images. so it is splitting the filename 'labels.txt' with a '.' and trying to evaluate int('label'). Keep labels.txt in a different folder and change label_path in helper.py accordingly.
Thanks for the reply @jsn5 .
Thank you! @jsn5