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
When I run the train code, I get the following error: Traceback (most recent call last): | 0/80000 [00:00<? , ?it/s]
File "train_gui.py", line 1886, in
gui.train(args.iterations)
File "train_gui.py", line 1000, in train
self.train_node_rendering_step()
File "train_gui.py", line 1276, in train_node_rendering_step
render_pkg_re = render(viewpoint_cam, self.deform.deform.as_gaussians, self. pipe, self. background, d_xyz, d_rot, d_scale, random_bg_color=random_bg_color, d_opacity=d_opacity, d_color=d_color, d_rot_as_res=self.deform.d_rot_as_res)
File "/data2/ght/SC-GS-master/gaussian_renderer/init.py", line 157, in render
cov3D_precomp=cov3D_precomp)
ValueError: not enough values to unpack (expected 4, got 2)
The diff_gaussian_rasterization I installed is in the link, but it seems that the return parameters of the rendering function do not match, do you know how to solve it? Look forward to your reply!
The text was updated successfully, but these errors were encountered:
Hi,
Could you check the output of your installed rasterizer (e.g the number of tensors and their shapes)? It seems inconsistent with ours.
I used the rasterizer from your project link, but it only returned two variables, not four,
When I run the train code, I get the following error: Traceback (most recent call last): | 0/80000 [00:00<? , ?it/s]
File "train_gui.py", line 1886, in
gui.train(args.iterations)
File "train_gui.py", line 1000, in train
self.train_node_rendering_step()
File "train_gui.py", line 1276, in train_node_rendering_step
render_pkg_re = render(viewpoint_cam, self.deform.deform.as_gaussians, self. pipe, self. background, d_xyz, d_rot, d_scale, random_bg_color=random_bg_color, d_opacity=d_opacity, d_color=d_color, d_rot_as_res=self.deform.d_rot_as_res)
File "/data2/ght/SC-GS-master/gaussian_renderer/init.py", line 157, in render
cov3D_precomp=cov3D_precomp)
ValueError: not enough values to unpack (expected 4, got 2)
The diff_gaussian_rasterization I installed is in the link, but it seems that the return parameters of the rendering function do not match, do you know how to solve it? Look forward to your reply!
The text was updated successfully, but these errors were encountered: