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 493d794 commit 1cf070fCopy full SHA for 1cf070f
bayesflow/networks/flow_matching/flow_matching.py
@@ -312,7 +312,7 @@ def compute_metrics(
312
313
u = keras.random.uniform((keras.ops.shape(x0)[0],), seed=self.seed_generator)
314
# p(t) ∝ t^(1/(1+α)), the inverse CDF: F^(-1)(u) = u^(1+α), α=0 is uniform
315
- t = u ** (1 + self.alpha)
+ t = u ** (1 + self.time_sampling_alpha)
316
t = expand_right_as(t, x0)
317
318
x = t * x1 + (1 - t) * x0
0 commit comments