qianguih / voxelnet

This is an unofficial inplementation of VoxelNet in TensorFlow.
646 stars 241 forks source link

Error while trying to call train.py #94

Closed ammaryasirnaich closed 3 years ago

ammaryasirnaich commented 3 years ago

Hi there, I really appreciate the work that you have shared. I will be a great help if you can give me a hint why I am having this error related to causing "dataset folder is not correct" While running the train.sh script after setting the directory as mentioned in the description, I am getting "dataset folder is not correct" error I have tried to debug the problem which took me to the kitti_loader.py file at line number 61 and 62

assert len(data_tag) != 0, "dataset folder is not correct"
assert len(data_tag) == len(f_rgb) == len(f_lidar) , "dataset folder is not correct"

The second validation fails. I cant understand the purpose of the validation check and why is that failing for the combined length check. I had printed the lengths which are: len of data_tag is 7481 len of f_rgb is 7481 len of f_lidar is 14962

I will be nice if any one can point me out I am doing something wrong

ammaryasirnaich commented 3 years ago

I think i have sorted out