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
Is there a way to visualize the z_local tensor that is created when running the DDPM on the encoded h0?
When using the sample method of the LION model the output dict returns a z_local with (num_samples, 8192,1,1) dimensions. From my understanding this is the z_local after decoding? I am not sure how visualize in 3D the z_local that is created before the decoding, like how the show here:
How did you do it?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
could you try to reshape it to z_reshape in (num_samples, 2048, 4,1,1) and then visualize z_reshape[:,:,:3] (the last channel is feature not xyz, so we dont plot it)? Let me know if it does not work
Hi again @ZENGXH,
Is there a way to visualize the z_local tensor that is created when running the DDPM on the encoded h0?
When using the sample method of the LION model the output dict returns a z_local with (num_samples, 8192,1,1) dimensions. From my understanding this is the z_local after decoding? I am not sure how visualize in 3D the z_local that is created before the decoding, like how the show here:
How did you do it?
Thanks in advance!
The text was updated successfully, but these errors were encountered: