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
I am trying to test your dynamic 3DGS implementation on the example dataset actor1_4_subseq you provide. I did all of the previous steps, including training Instant-NGP+T and getting the vhulls. But now when running evc-train -c configs/exps/gaussiant/gaussiant_${expname}.yaml I get the following error:
RuntimeError: The expanded size of the tensor (262144) must match the existing size (705441) at non-singleton dimension 0. Target sizes: [262144, 3]. Tensor sizes: [705441, 3]
*** The expanded size of the tensor (262144) must match the existing size (705441) at non-singleton dimension 0. Target sizes: [262144, 3]. Tensor sizes: [705441, 3]
> {path/to/EasyVolcap/easyvolcap/utils/gaussian_utils.py(443)create_from_pcd()
441 if colors is not None:
442 SH = rgb2sh0(colors)
--> 443 features[:, :3, 0] = SH
444 features[:, 3: 1:] = 0
445
Would you have an idea why this is happening?
The text was updated successfully, but these errors were encountered:
Looks like we encountered a shape mismatch error when using the initial point cloud for initializing 3DGS. Could you share the prepared init point clouds files (.plys)?
In the documented example, we use dense initialization for every frame instead of visual hulls, so there might be some bug in the visual hull code path.
Hello,
I am trying to test your dynamic 3DGS implementation on the example dataset actor1_4_subseq you provide. I did all of the previous steps, including training Instant-NGP+T and getting the vhulls. But now when running
evc-train -c configs/exps/gaussiant/gaussiant_${expname}.yaml
I get the following error:Would you have an idea why this is happening?
The text was updated successfully, but these errors were encountered: