-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consult for the MAE metric values? #3
Comments
Hi, yes, the depth values for evaluating MAE in the code are normalized by the maximum range, so ´they are always in range of 0 to 1. In the paper, all values are in their actual range. Best, |
Thank you so much for your reply!. I noticed the following wriring in the code: |
Hi Fangzhou, sorry for the late reply, somehow I miss the notification. For your first question, the range image is always normalized in range of (0, 1) and then transformed to a logarithmic space. This is simply because the dataset is recorded by sensors with different configurations, so the maximum and minimum range are different to each other. By normalization, I can unify the range regardless of that difference. It would be also easier to test the generalization ability in the cross-dataset case, like training on carla and testing on durlar. For your second question, since the network is trained on the normalized version, just commenting them out would not give you the correct output. But you can scale them back to the original range in the post-processing step before evaluating them. The back transformation from the logarithmic space is already there so you don't need to add any code for that. Best, |
Have the values of the MAE metric in the experiments described in the paper been scaled? The actual values obtained are very small, with the MAE errors in some other papers also being in the range of 0.0xx.
The text was updated successfully, but these errors were encountered: