-
Notifications
You must be signed in to change notification settings - Fork 20
Description
Thanks for sharing the great work!
I have two simple questions related to the ablation study & CSS Net freeze part.
Q1. Can you explain the difference between (R,t) / (R,t),s / (R,t),s,z, which is in the main paper tab3??
Due to a limit of my understanding, it is hard to understand the difference clearly included implementation. Is it for making a label or for variables in deep sdf training?? I'm curious because I can't find a place where the all [(R,t), s, and z] parts are affected in your code.
Line 501 in 416c27d
| def get_kitti_label(dsdf, grid, latent, scale, trans, yaw, p_WC, bbox): |
Q2. As in the code the conv1, bn1, and layer1 were frozen, Can you explain how to count the number of layers (5)??
I saw that in supplementary C.1. CSS Net, "the first five layers are frozen in order to prevent overfitting
to peculiarities of the rendered data".
sdflabel/networks/resnet_css.py
Line 156 in 416c27d
| _freeze_module(self.conv1) |
