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
hi, thanks for the great project here. i have a question about the one-step multiview generation with wonder3d. though in the demo code the num_inference_steps is set as 1, while in the scheduler_perflow.py, the behavior is reset to at least config.num_time_windows (4) steps (the actual timesteps are [1000, 750, 500, 250]),
if num_inference_steps < self.config.num_time_windows:
num_inference_steps = self.config.num_time_windows
print(f"### We recommend a num_inference_steps not less than num_time_windows. It's set as {self.config.num_time_windows}.")
is my understanding right?
The text was updated successfully, but these errors were encountered:
Hi,
We updated the perflow scheduler recently. Considering the stability, we forced the inference steps to be equal to or larger than the number of windows.
The multiview experiments were implemented before the update and used only one step, [1000]. You can remove the three lines and try one-step inference for wonder3d.
hi, thanks for the great project here. i have a question about the one-step multiview generation with wonder3d. though in the demo code the num_inference_steps is set as 1, while in the scheduler_perflow.py, the behavior is reset to at least config.num_time_windows (4) steps (the actual timesteps are [1000, 750, 500, 250]),
is my understanding right?
The text was updated successfully, but these errors were encountered: