qinglew / PCN-PyTorch

Implementation of PCN(Point Completion Network) in PyTorch.
141 stars 33 forks source link

Doubt on CD #5

Closed LebaAnna closed 3 years ago

LebaAnna commented 3 years ago

Thank you so much for providing your code! May i ask you one thing, usually the cd is in scale of 10^(-4) right, here its seems to be in scale of 10^(-3). Is there any scaling done?

qinglew commented 3 years ago

CD loss in training process is not necessary to be scaled, while evaluating the model, you can scale with 10^-3 or 10^-4. The code I provide in evaluation.py is not scaled.