We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cea4fe commit 1e46cb1Copy full SHA for 1e46cb1
examples/radiance_fields/ngp.py
@@ -212,8 +212,8 @@ def forward(
212
assert (
213
positions.shape == directions.shape
214
), f"{positions.shape} v.s. {directions.shape}"
215
- density, embedding = self.query_density(positions, return_feat=True)
216
- rgb = self._query_rgb(directions, embedding=embedding)
+ density, embedding = self.query_density(positions, return_feat=True)
+ rgb = self._query_rgb(directions, embedding=embedding)
217
return rgb, density # type: ignore
218
219
0 commit comments