-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: 'Tensor' object has no attribute 'depth_map' #21
Comments
I couldn't train the 2D part of the network from scratch either. Observed the exact error. Maybe changing depth.depth_map to depth might work. But then the rest of the code might complain. |
I changed
Hope my information helps! |
Hi all, sorry for the delay - I just returned from travelling. I will have a look at this issue the next days. Thanks |
Hi. I wanted to train the depth2d part of the model, but it raises the following error:
I inspected the code and found the following code in
lib/modeling/depth/depth_prediction.py
:If my observations are correct, in the third line of the function,
depth_targets
has become a list of Tensors, so the attributedepth_map
is lost. Is this a bug? How can I resolve this?The text was updated successfully, but these errors were encountered: