Special purposed function for computing numerical stabled d_alpha_t / alpha_t
(self, t)
| 175 | return - 0.5 * math.pi * torch.sin(t * math.pi / 2) |
| 176 | |
| 177 | def compute_d_alpha_alpha_ratio_t(self, t): |
| 178 | """Special purposed function for computing numerical stabled d_alpha_t / alpha_t""" |
| 179 | return np.pi / (2 * torch.tan(t * np.pi / 2)) |
| 180 | |
| 181 | |
| 182 | """ SDE Sampler """ |
nothing calls this directly
no outgoing calls
no test coverage detected