mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2026-01-17 11:50:35 +08:00
Fix inversion between fine and coarse implicit_functions
Summary: Fine implicit function was called before the coarse implicit function. Reviewed By: shapovalov Differential Revision: D46224224 fbshipit-source-id: 6b1cc00cc823d3ea7a5b42774c9ec3b73a69edb5
This commit is contained in:
committed by
Facebook GitHub Bot
parent
e0c3ca97ff
commit
35badc0892
@@ -373,7 +373,7 @@ class OverfitModel(ImplicitronModelBase): # pyre-ignore: 13
|
||||
self.implicit_function
|
||||
]
|
||||
if self.coarse_implicit_function is not None:
|
||||
implicit_functions += [self.coarse_implicit_function]
|
||||
implicit_functions = [self.coarse_implicit_function, self.implicit_function]
|
||||
|
||||
if self.global_encoder is not None:
|
||||
global_code = self.global_encoder( # pyre-fixme[29]
|
||||
|
||||
Reference in New Issue
Block a user