From 3d61d8cbdcb66f2526d2b1a75ef20308ffafa5c1 Mon Sep 17 00:00:00 2001 From: Leandro Passos Date: Tue, 7 May 2024 04:43:10 -0300 Subject: [PATCH] Fixing typos and symbols in bionerf.md (#3126) * bionerf markdown file * method description in markdown file * inserting bionerf in index file * bionerf description * fixing image paths * including results on readme * deleting last line from bionerfs page * fixing typos in bionerf.md --- docs/nerfology/methods/bionerf.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/nerfology/methods/bionerf.md b/docs/nerfology/methods/bionerf.md index c5d3c5295d..5ab344522e 100644 --- a/docs/nerfology/methods/bionerf.md +++ b/docs/nerfology/methods/bionerf.md @@ -51,13 +51,13 @@ Here is an overview pipeline for BioNeRF, we will walk through each component in The first step consists of feeding two neural models simultaneously, namely $M_{\Delta}$ and $M_c$, with the camera positional information. The output of these models encodes the positional information from the input image. Although the input is the same, the neural models do not share weights and follow a different flow in the next steps. ### Cognitive Filtering -This step performs a series of operations, called \emph{filters}, that work on the embeddings coming from the previous step. There are four filters this step derives: density, color, memory, and modulation. +This step performs a series of operations, called *filters*, that work on the embeddings coming from the previous step. There are four filters this step derives: density, color, memory, and modulation. ### Memory Updating -Updating the memory requires the implementation of a mechanism capable of obliterating trivial information, which is performed using the memory filter (Step 3.1 in Figure~\ref{f.bionerf}). Fist, one needs to compute a signal modulation **$\mu$**, for further introducing new experiences in the memory **$\Psi$** through the modulating variable **$\mu$** using a $\textit{tanh}$ function (Step 3.2 in the figure). +Updating the memory requires the implementation of a mechanism capable of obliterating trivial information, which is performed using the memory filter (Step 3.1 in the figure). Fist, one needs to compute a signal modulation **$\mu$**, for further introducing new experiences in the memory **$\Psi$** through the modulating variable **$\mu$** using a $\textit{tanh}$ function (Step 3.2 in the figure). ### Contextual Inference -This step is responsible for adding contextual information to BioNeRF. Two new embeddings are generate, i.e., **${h}^{\prime}_\Delta$** and **${h}^{\prime}_c$** based on density and color filters, respectively (Step 4 in the figure), which further feed two neural models, i.e., $M^\prime_\Delta$ and $M^{\prime}$. Subsequently, $M^{\prime}_\Delta$ outputs the volume density, while color information is predicted by $M^{\prime}_c$, further used to compute the final predicted pixel information and the loss function. +This step is responsible for adding contextual information to BioNeRF. Two new embeddings are generated, i.e., **${h}^{\prime}_\Delta$** and **${h}^{\prime}_c$** based on density and color filters, respectively (Step 4 in the figure), which further feed two neural models, i.e., $M^\prime_\Delta$ and $M^\prime_c$. Subsequently, $M^\prime_\Delta$ outputs the volume density, while color information is predicted by $M^\prime_c$, further used to compute the final predicted pixel information and the loss function. ## Results