cjiang2 / VDCNN

Implementation of Very Deep Convolutional Neural Network for Text Classification
171 stars 41 forks source link

bug in load_csv_file() #3

Closed Bob-Pang closed 6 years ago

Bob-Pang commented 6 years ago

the code in line 33 is: if i > sequence_max_length - 1: I think it should be: if i >= sequence_max_length - 1

cjiang2 commented 6 years ago

Hello, Yes that's a stupid mistake, will be fixing it later this week. 😣

Bob-Pang commented 6 years ago

ok,thanks for your reply