Open SHIBOYA opened 3 months ago
Following up on my previous issue regarding the gradient shape mismatch error, I want to bring up another issue I've encountered during backpropagation related to the _RasterizeGaussiansBackward function.
Occasionally, I receive a different runtime error during the backward pass:
RuntimeError: Function _RasterizeGaussiansBackward returned an invalid gradient at index 4 - got [2025, 26, 8] but expected shape compatible with [1975, 26, 8]
This suggests that the problem might not be limited to a single shape mismatch but could vary depending on the input or some other factors during training. I’m curious to understand more about how the _RasterizeGaussiansBackward function operates.
Specifically, I have the following questions:
I’m eager to resolve these issues and would greatly appreciate any insights or suggestions you might have on addressing these dimension-related errors.
Hi, I encounter an issue with using feature-3dgs on my datasets.
While running the train.py script, I encounter the following error during the backward pass:
It seems that the problem arises from a shape mismatch in the gradients returned by the _RasterizeGaussiansBackward function. I've been inspecting the tensor shape transformations during the forward pass, but I'm unsure how to correct this gradient shape mismatch.
I look forward to any advice or suggestions.