Skip to content
Snippets Groups Projects
Commit 8ff5cb13 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Fixed error in loss function: log(tau(alpha)).

parent 08864efa
No related branches found
No related tags found
No related merge requests found
......@@ -92,6 +92,7 @@ class BernoulliGammaLoss(NaNLoss):
torch.log(y_true + self.epsilon) -
y_true / (gscale + self.epsilon) -
gshape * torch.log(gscale + self.epsilon) -
torch.lgamma(gshape + self.epsilon))
torch.log(torch.lgamma(gshape + self.epsilon)
+ self.epsilon))
return - self.reduce(loss)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment