WeijingShi / Point-GNN

Point-GNN: Graph Neural Network for 3D Object Detection in a Point Cloud, CVPR 2020.
MIT License
523 stars 114 forks source link

Evaluation not working #3

Closed dirk61 closed 4 years ago

dirk61 commented 4 years ago

I ran the eval.py following your guidance but it seems something's gone wrong.

微信图片_20200315101453

It gives me this Index out of range error, have I done something wrong?

微信图片_20200315101459
WeijingShi commented 4 years ago

It's caused by a mismatch between the split file and eval_config. In eval_config, NUM_TEST_SAMPLE is set to be the same as the val split, while you are using _traincar split.

I've updated the train_config and eval_config to set NUM_TEST_SAMPLE from the split file. It should be fine now.

dirk61 commented 4 years ago

@WeijingShi Thanks! It works.