Skip to content

Commit 122f39b

Browse files
Bugfix to Partial diffusion where partial_t doesn't affect output (#138)
Return noise_schedule instead of t_hat
1 parent 48c8966 commit 122f39b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

models/rfd3/src/rfd3/model/inference_sampler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,10 @@ def _construct_inference_noise_schedule(
120120
ranked_logger.info(
121121
f"Using fallback: final step with t={noise_schedule[0].item():.6f}"
122122
)
123+
else:
124+
noise_schedule = t_hat
123125

124-
return t_hat
126+
return noise_schedule
125127

126128
def _get_initial_structure(
127129
self,

0 commit comments

Comments
 (0)