/home/nabakshi/anaconda3/envs/l3dgpu/bin/python
Code to generate outputs: python main.py --config-name=box
Code to generate outputs: python main.py --config-name=box
Code to generate outputs: python main.py --config-name=box
Code to generate is python main.py --config-name=train_box
Box center: (0.25, 0.25, -0.00)
Box side lengths: (2.01, 1.50, 1.50)
Code to generate: python main.py --config-name=nerf_lego
Remember to set the parameter in nerf_lego.implicit_function.view_dep = False
Code to generate: python main.py --config-name=nerf_lego
Remember to set the parameter in nerf_lego.implicit_function.view_dep = True
The resolution in this image is too low to appreciate the view dependence effects coming to the fore however if you pay attention you'll see that the same pixels to the from of the lego bulldozer appear darker on the back swing of the truck as compared to the GIF in #3. I was not satisfied with the result hence I attempted view dependence again after switching to high res, stay tuned.
View Dependence vs Generalisation: If the direction related information is provided too early to the network it may be highly view dependent, which is undesirable as the object remains the same, hence we introduce the directional information later in the network (for me it was in the 6th layer) in order to have an inductive bias that allows the basic geometry to largely only depend on the positional information but have a smaller effect of the direction of viewing in the final RGB values produced.
Code to generate: python main.py --config-name=nerf_lego_highres
Remember to set the parameter nerf_lego_highres.implicit_function.view_dep = False
Remember to set the parameter nerf_lego_highres.sampler.n_pts_per_ray = 128
Remember to set the parameter nerf_lego_highres.training.batch_size = 1024
At 240 iterations we can see that finer details of the lego bezels have not come through although the details are much much clearer than #3.
Code to generate: python main.py --config-name=nerf_lego_highres
Remember to set the parameter nerf_lego_highres.implicit_function.view_dep = True
Remember to set the parameter nerf_lego_highres.sampler.n_pts_per_ray = 256
Remember to set the parameter nerf_lego_highres.training.batch_size = 512
The view dependence effects are clearly shining through and we can see the extrusions of the lego board appear differently with different views depending on the shadows in just 250 iterations.
Using the exact same config as above but training another 100 epochs results in an even more accurate rendering:
nerf_lego_highres.sampler.n_pts_per_ray
parameter inorder to model finer details. Correspondingly batch_size
needed to be reduced in order to keep memory requirements in check.