deep-anpr
deep-anpr copied to clipboard
train.py run error ! need help!
I run this program on windows using python3.5 .It occur following error ,how can I deal with it?Please!
Traceback (most recent call last):
File "train.py", line 293, in
Does your problem have been solved? I also encountered the same problem and asked for answers. Thank you very much!
For me, win10 python3.5
In read_data()
code = fname.split("")[1][9:16] => code = fname.split("\")[1][9:16]
p = fname.split("")[1][17] == '1' => p = fname.split("\")[1][17] == '1'
Simple change In read_data() to:===>
code = fname.split("\")[1][9:16] p = fname.split("\")[1][17] == '1'