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

Activate shape parameter of GenPareto with Exp.

parent 3e0f0895
No related branches found
No related tags found
No related merge requests found
...@@ -132,16 +132,16 @@ class BernoulliGenParetoLoss(NaNLoss): ...@@ -132,16 +132,16 @@ class BernoulliGenParetoLoss(NaNLoss):
# clip probabilities to (0, 1) # clip probabilities to (0, 1)
p_pred = torch.sigmoid(y_pred[:, 0, ...].squeeze()[mask]) p_pred = torch.sigmoid(y_pred[:, 0, ...].squeeze()[mask])
# clip scale to (0, +infinity) # clip shape and scale to (0, +infinity)
gshape = torch.exp(y_pred[:, 1, ...].squeeze()[mask])
gscale = torch.exp(y_pred[:, 2, ...].squeeze()[mask]) gscale = torch.exp(y_pred[:, 2, ...].squeeze()[mask])
gshape = y_pred[:, 1, ...].squeeze()[mask]
# negative log-likelihood function of Bernoulli-GenPareto distribution # negative log-likelihood function of Bernoulli-GenPareto distribution
# Bernoulli contribution # Bernoulli contribution
loss = - (1 - p_true) * torch.log(1 - p_pred + self.epsilon) loss = - (1 - p_true) * torch.log(1 - p_pred + self.epsilon)
# Gamma contribution # GenPareto contribution
loss -= p_true * (torch.log(p_pred + self.epsilon) + torch.log( loss -= p_true * (torch.log(p_pred + self.epsilon) + torch.log(
1 - (1 + (gshape * y_true / gscale)) ** (- 1 / gshape) + 1 - (1 + (gshape * y_true / gscale)) ** (- 1 / gshape) +
self.epsilon)) self.epsilon))
......
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