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
time_grid (Tensor): The process is solved in the interval [min(time_grid, max(time_grid)] and if step_size is None then time discretization is set by the time grid. May specify a descending time_grid to solve in the reverse direction. Defaults to torch.tensor([0.0, 1.0]).
74
76
return_intermediates (bool, optional): If True then return intermediate time steps according to time_grid. Defaults to False.
75
77
enable_grad (bool, optional): Whether to compute gradients during sampling. Defaults to False.
78
+
log_p0 (Optional[Callable[[Tensor], Tensor]]): If provided, the function computes the log likelihood of the source distribution at :math:`t=0`. The velocity model must be differentiable with respect to x.
79
+
exact_divergence (bool): Whether to compute the exact divergence or use the Hutchinson estimator.
0 commit comments