We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c771f6 commit 05e95dcCopy full SHA for 05e95dc
pymc3/distributions/transforms.py
@@ -485,7 +485,7 @@ def backward_val(self, y_):
485
Km1 = y.shape[0]
486
k = np.arange(Km1)[(slice(None),) + (None,) * (y.ndim - 1)]
487
eq_share = nplogit(1.0 / (Km1 + 1 - k).astype(str(y_.dtype)))
488
- z = expit(y + eq_share, self.eps)
+ z = expit(y + eq_share)
489
yl = np.concatenate([z, np.ones(y[:1].shape)])
490
yu = np.concatenate([np.ones(y[:1].shape), 1 - z])
491
S = np.cumprod(yu, 0)
0 commit comments