Correct way to re-use multistep dpm solver scheduler when data has varying shape #8561
Unanswered
EllingtonKirby
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using
scheduling_dpmsolver_multistep
with 3D point cloud data with a second order update. Because the point clouds contain different numbers of points, I concatenate all the point clouds in a batch into a single cloud. This results in two batches having different numbers of points and thus different sizes.When stepping the
scheduling_dpmsolver_multistep
during my validation step, an error is thrown from line 741. Themodel_output_list
contains a value from the previous batch, which results in an error.I am a bit confused why the value from the previous batch is being re-used, but I resolved it be re-creating the scheduler object with each new validation step. This feels a bit strange, and I am wondering if there is a better way to handle this case.
Beta Was this translation helpful? Give feedback.
All reactions