Skip to content

Commit bdb27e8

Browse files
committed
correct integration times for forward direction
1 parent d8d6246 commit bdb27e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bayesflow/experimental/diffusion_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,8 +552,8 @@ def _forward(
552552
) -> Tensor | tuple[Tensor, Tensor]:
553553
integrate_kwargs = (
554554
{
555-
"start_time": 1.0,
556-
"stop_time": 0.0,
555+
"start_time": 0.0,
556+
"stop_time": 1.0,
557557
}
558558
| self.integrate_kwargs
559559
| kwargs

0 commit comments

Comments
 (0)