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
Why need to / samples[0].shape[0] and why the np.log(2.0 * np.pi) need to multiply samples[0].shape[1] * samples[0].shape[2]? The same doubt lies in the class GaussianFlowNLL.
In class GaussianEntropy, you wrote (1.0 + np.log(2.0 * np.pi). Why need to add 1.0 here?
The text was updated successfully, but these errors were encountered:
Thank you very much for releasing the code of DPF-Net. I read it carefully and have a doubt for the loss. Here are the details:
In
lib/networks/losses.py
, the classPointFlowNLL
is used to compute the negative log-likelihood loss for point cloud flow.Why need to
/ samples[0].shape[0]
and why thenp.log(2.0 * np.pi)
need to multiplysamples[0].shape[1] * samples[0].shape[2]
? The same doubt lies in the classGaussianFlowNLL
.In class
GaussianEntropy
, you wrote(1.0 + np.log(2.0 * np.pi)
. Why need to add1.0
here?The text was updated successfully, but these errors were encountered: