From 806e3941b1dc3291aacd8941afed1405a0af16f8 Mon Sep 17 00:00:00 2001 From: Daniel Duckworth Date: Wed, 8 Apr 2020 12:19:29 +0200 Subject: [PATCH] Update run_nerf.py Co-Authored-By: bmild --- run_nerf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_nerf.py b/run_nerf.py index 9f38f0f6..2e421f63 100644 --- a/run_nerf.py +++ b/run_nerf.py @@ -28,7 +28,7 @@ def ret(inputs): def run_network(inputs, viewdirs, fn, embed_fn, embeddirs_fn, netchunk=1024*64): - """Prepares inputs and applies 'fn'.""" + """Prepares inputs and applies network 'fn'.""" inputs_flat = tf.reshape(inputs, [-1, inputs.shape[-1]])