Closed amiltonwong closed 4 years ago
supplement: I can run the evaluation script for valid split smoothly
./evaluate_semantics.py --dataset /data2/kitti_dataset/dataset/ --predictions /media/root/mdata/dataset/lidar-bonnetal_models/predictions/knn_postprocess/darknet53-knn --split valid
Hi,
This is the intended behavior, since you don't have the test set labels available. In order to evaluate your result on the test set you need to make a submission to our benchmark.
Got it. Thanks
Hi, authors,
When I perform the semantic segmentation evaluation on test split as guided:
./evaluate_semantics.py --dataset /data2/kitti_dataset/dataset/ --predictions /media/root/mdata/dataset/lidar-bonnetal_models/predictions/knn_postprocess/darknet53-knn --split test
I got the following assertion error:
As test split doesn't contain GT labels, thus
label_names
in line 169 in evaluate_semantics.py will be empty list, which conflicts the assertion statement. Is there any mistake in my command?./evaluate_semantics.py --dataset /data2/kitti_dataset/dataset/ --predictions /media/root/mdata/dataset/lidar-bonnetal_models/predictions/knn_postprocess/darknet53-knn --split test
THX!