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
I get the following error by executing "sh run_demo.sh"
Parsing the arguments...
Initnializing the KV-Net
bn_running_avg = 0
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
init transposed 2d
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
init transposed 2d
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
KV-Net initialization:
with R-net: True
refinement name: DPV
loading KV_net at ./saved_models/kvnet_scannet.tar
Done
Getting the paths for traj_0
Done
Traceback (most recent call last):
File "test_KVNet.py", line 255, in
main()
File "test_KVNet.py", line 185, in main
dat_array = [ dataset[idx] for idx in range(t_win_r * 2 + 1) ]
File "test_KVNet.py", line 185, in
dat_array = [ dataset[idx] for idx in range(t_win_r * 2 + 1) ]
File "/home/Projects/torch/neuralrgbd/code/mdataloader/scanNet.py", line 400, in getitem
dmap_mask = 1 - (proc_totensor(dmap_mask) > 0 )
File "/home/.virtualenvs/torch/lib/python3.6/site-packages/torch/_tensor.py", line 544, in rsub
return _C._VariableFunctions.rsub(self, other)
RuntimeError: Subtraction, the - operator, with a bool tensor is not supported. If you are trying to invert a mask, use the ~ or logical_not() operator instead.
The text was updated successfully, but these errors were encountered:
replace '1-(proc_totensor(dmap_mask) > 0 )' and '1-( proc_totensor( dmap_mask_imgsize ) >0)' from line 400 and 401 of scanNet.py with ~(proc_totensor(dmap_mask) > 0 ) and ~( proc_totensor( dmap_mask_imgsize ) >0)
I get the following error by executing "sh run_demo.sh"
Parsing the arguments...
Initnializing the KV-Net
bn_running_avg = 0
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
init transposed 2d
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
init transposed 2d
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
RefineNet_UNet2D: init conv2d
KV-Net initialization:
with R-net: True
refinement name: DPV
loading KV_net at ./saved_models/kvnet_scannet.tar
Done
Getting the paths for traj_0
Done
Traceback (most recent call last):
File "test_KVNet.py", line 255, in
main()
File "test_KVNet.py", line 185, in main
dat_array = [ dataset[idx] for idx in range(t_win_r * 2 + 1) ]
File "test_KVNet.py", line 185, in
dat_array = [ dataset[idx] for idx in range(t_win_r * 2 + 1) ]
File "/home/Projects/torch/neuralrgbd/code/mdataloader/scanNet.py", line 400, in getitem
dmap_mask = 1 - (proc_totensor(dmap_mask) > 0 )
File "/home/.virtualenvs/torch/lib/python3.6/site-packages/torch/_tensor.py", line 544, in rsub
return _C._VariableFunctions.rsub(self, other)
RuntimeError: Subtraction, the
-
operator, with a bool tensor is not supported. If you are trying to invert a mask, use the~
orlogical_not()
operator instead.The text was updated successfully, but these errors were encountered: