I am getting following error when running train.py
...model.py", line 248, in preprocess_true_boxes
assert (true_boxes[..., 4]
was this issue solved? How was it done. I am getting the same issue
In my case, it was the label in train.txt starting with 1 that cause the problem. When I changed the label starting with 0, the error disappear.
I got the same issue too. It turns out num_classes that I listed in model_data folder is less than what I have in my label, which is incorrect. You should check your labels.
Most helpful comment
In my case, it was the label in train.txt starting with 1 that cause the problem. When I changed the label starting with 0, the error disappear.