From 4711d12a091ad31f51e761bee4a8cce7b4bab504 Mon Sep 17 00:00:00 2001 From: Darijan Gudelj Date: Fri, 26 Aug 2022 09:23:49 -0700 Subject: [PATCH] MultiPassEmissionAbsorptionRenderer Summary: I think there is a typo here could not find any MultiPassEARenderer just MultiPassEmissionAbsorptionRenderer? Reviewed By: bottler Differential Revision: D39056641 fbshipit-source-id: 4dd0b123fc795a0083a957786c032e23dc5abac9 --- pytorch3d/implicitron/models/renderer/base.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pytorch3d/implicitron/models/renderer/base.py b/pytorch3d/implicitron/models/renderer/base.py index 5f574cb7..f55059aa 100644 --- a/pytorch3d/implicitron/models/renderer/base.py +++ b/pytorch3d/implicitron/models/renderer/base.py @@ -110,8 +110,9 @@ class BaseRenderer(ABC, ReplaceableBase): xy locations of each ray's pixel in the NDC screen space. implicit_functions: List of ImplicitFunctionWrappers which define the implicit function methods to be used. Most Renderers only allow - a single implicit function. Currently, only the MultiPassEARenderer - allows specifying mulitple values in the list. + a single implicit function. Currently, only the + MultiPassEmissionAbsorptionRenderer allows specifying mulitple + values in the list. evaluation_mode: one of EvaluationMode.TRAINING or EvaluationMode.EVALUATION which determines the settings used for rendering.