When running the online retrieval, I see the following error (truncated for brevity):
DEBUG:__main__:Model initialized and moved to CUDA
INFO:__main__:Loaded weights from ./bfvos/training/checkpoints/ckpt_epoch_1_batch_1800.pth
File "./bfvos/retrieve.py", line 62, in batch_segment
batch_embeddings = model(current_batch_tensor)
File "anaconda3/envs/bf-vos/lib/python3.6/site-packages/torch/nn/modules/module.py", line 491, in __call__
result = self.forward(*input, **kwargs)
TypeError: forward() missing 1 required positional argument: 'y'
I believe this is because the y parameter (3 channel tensor with (i, j, t)) isn't being passed to the network during online retrieval. Any advice on how to fix this?
Thanks
When running the online retrieval, I see the following error (truncated for brevity):
I believe this is because the y parameter (3 channel tensor with (i, j, t)) isn't being passed to the network during online retrieval. Any advice on how to fix this?
Thanks