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 bdb27e8 commit ca52fc0Copy full SHA for ca52fc0
bayesflow/experimental/diffusion_model.py
@@ -552,8 +552,8 @@ def _forward(
552
) -> Tensor | tuple[Tensor, Tensor]:
553
integrate_kwargs = (
554
{
555
- "start_time": 0.0,
556
- "stop_time": 1.0,
+ "start_time": 1.0,
+ "stop_time": 0.0,
557
}
558
| self.integrate_kwargs
559
| kwargs
@@ -601,8 +601,8 @@ def _inverse(
601
602
603
604
- "start_time": 1.0,
605
- "stop_time": 0.0,
+ "start_time": 0.0,
+ "stop_time": 1.0,
606
607
608
0 commit comments