Skip to content

Commit

Permalink
Add optimizer to arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal authored Nov 13, 2019
1 parent 2acdd87 commit 84aec44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion paper/paper.tex
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,12 @@ \section{Inverse Rendering}
\begin{algorithm}[!htb]
\DontPrintSemicolon
\SetAlgoLined
\KwIn{Initial Guess of the Scene Parameters, Maximum Number of Iterations, Tolerance in Loss}
\KwIn{Initial Guess of the Scene Parameters, Maximum Number of Iterations, Tolerance in Loss, First-Order Optimization Algorithm}
\KwOut{Optimized set of Scene Parameters}
params $\gets$ Initial Guess of Scene Parameters\;
tolerance $\gets$ Tolerance in Loss\;
max\_iter $\gets$ Maximum Number of Iterations\;
optimizer $\gets$ First-Order Optimization Algorithm\;
converged $\gets$ false\;
iter $\gets$ 0\;
\While{not \textbf{converged} or iter < max\_iter}{
Expand Down

0 comments on commit 84aec44

Please sign in to comment.