You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there are very few occupancy networks based on sparse frameworks, thank you for your work, which has inspired me to be able to build on it to be able to continue with new ideas in my research.
I tried to change the evaluation metrics to miou to be able to easily compare the performance with other models, but I noticed that running 'python old_metrics.py' needs to save the predictions in npz format. What needs to be changed in the code to be able to use miou when executing val.py?
Can you help me in this matter?
The text was updated successfully, but these errors were encountered:
You can rewrite the evaluate method of nuscenes_occ_dataset.py to use Metric_mIoU instead of main_rayiou; Or you can simply add the following code after getting the sem_pred with shape [200x200x16] in the evaluate method, saving predictions when executing val.py.
This is very excellent work, proposing a method with high real-time performance and innovative evaluation metrics! Regarding this issue, I tried to add the code you mentioned, but it seems that in the nuscenes_occ_dataset.py file, within the evaluate method, the shape of sem_pred is (B,N),which prints out as (1,32000). Do I need to perform any additional operations to get the shape [200x200x16]?
Currently there are very few occupancy networks based on sparse frameworks, thank you for your work, which has inspired me to be able to build on it to be able to continue with new ideas in my research.
I tried to change the evaluation metrics to miou to be able to easily compare the performance with other models, but I noticed that running 'python old_metrics.py' needs to save the predictions in npz format. What needs to be changed in the code to be able to use miou when executing val.py?
Can you help me in this matter?
The text was updated successfully, but these errors were encountered: