You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this net a NeRF model for this line of code in the pose_estimation.ipynb file? # Encode. net.encode( input_image.unsqueeze(0), input_pose.unsqueeze(0).to(device=device), focal, )
Are the parameters of this NeRF model modified during iteration?
On the other hand, the net.encode seems does the same thing in each loop, but why can't move this code outside the loop?
The text was updated successfully, but these errors were encountered:
Is this net a NeRF model for this line of code in the pose_estimation.ipynb file?
# Encode. net.encode( input_image.unsqueeze(0), input_pose.unsqueeze(0).to(device=device), focal, )
Are the parameters of this NeRF model modified during iteration?
On the other hand, the
net.encode
seems does the same thing in each loop, but why can't move this code outside the loop?The text was updated successfully, but these errors were encountered: