Assignment 4 will build on top of the assignment 3 codebase. Copy the following files and directories into your assignment 3 codebase:
a4/
render_functions.py
data_utils.py
First initial t, and then iteratively update t based on the signed distance function and whether it hits or not.
The MLP is similar as what I did in assignment 3. I have two MLP to predict color and sdf. They both takes the shared features from the previous layer. Eikonal loss is similar to what we discussed in the lecture
alpha
influences the scale of the density, and beta
influences the band-width of the density
The best hyper-parameter is:
n_hidden_neurons_distance: 256 n_hidden_neurons_distance: 256
beta
bias your learned SDF? What about low beta
?Higher 'beta' makes the SDF smooth, and lower 'beta' makes it sharper.
beta
or high beta
? Why?High 'beta' will be easier to train because the smooth SDF is easier to converge.
beta
or low beta
? Why?Low 'beta' because it will produce sharper surface.
The left image is Neural Surface result, and the right one is NeRF result. Even with 20 views, Neural Surface can also generate reasonable result.
I discuss the homework with Tianyuan Zhang.