-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Earth Mover's Distance (EMD) loss #211
Comments
Hi @congun
We do not want to provide an EMD implementation which is not correct, well tested, robust, and efficient. The above solutions you cite do not meet our quality bar, unfortunately. It seems that good implementation for EMD that works for medium sized pointclouds (5k points and above) will require a lot of work, potentially groundbreaking and publication worthy! |
Thank you very much for detailed explanation. |
There is this: geomloss which gives differentiable optimal transport metrics for point clouds, which you can differentiably sample from meshes. I think it is still too slow for training at reasonable point cloud sizes (~10K), but it may be sufficient for evaluation. |
Hi @gkioxari You mentioned that "The biggest challenge in implementing a correct EMD is the fact that a naive solution will not scale well with the size of points". Is there any implementation of naive solution that you think work well with point cloud of small size, e.g., 1k-2k points? Thank you so much. I would like to use that as part of my newly developed point cloud GAN algorithm. The algorithm doesn't need to be tested on point cloud of very large size at the first step. So an implementation of naive method could be of great help. Thanks! |
The same questions. |
🚀 Feature Request
Earth Mover's Distance (EMD) is a popular loss metric for comparing point clouds alongside Chamfer Distance. Popular studies [1,2] use both distances for point cloud generation and reconstruction. Also, it is indicated by these studies that "the CD distance is less faithful than EMD to the visual quality of synthetic results." I believe EMD loss would be a valuable contribution to the library.
Some implementations:
https://github.com/Colin97/MSN-Point-Cloud-Completion/tree/master/emd
https://github.com/daerduoCarey/PyTorchEMD
[1] https://arxiv.org/abs/1612.00603
[2] https://arxiv.org/abs/1707.02392
The text was updated successfully, but these errors were encountered: