coperception
coperception copied to clipboard
Issues while testing When2com
Hi,
I have downloaded the checkpoints and then used them to train my model using the following command:
make train com=when2com rsu=0
While trying to test the model using:
make test_no-rsu com=when2com rsu=0 wrap=0
I get the following error
Something seem to be wrong with the inference mode.
Add this line in the Makefile test block:
--inference $(inference) \
`# orginal one
test_no_rsu:
python $(testing_script)
--data $(testing_data)
--com $(com)
--resume $(logpath)/$(com)/no_rsu/epoch_$(nepoch).pth
--tracking
--logpath $(logpath)
--apply_late_fusion $(apply_late_fusion)
--visualization $(visualization)
--rsu 0
#new one
test_no_rsu:
python $(testing_script)
--data $(testing_data)
--com $(com)
--resume $(logpath)/$(com)/no_rsu/epoch_$(nepoch).pth
--tracking
--logpath $(logpath)
--apply_late_fusion $(apply_late_fusion)
--visualization $(visualization)
--inference $(inference)
--rsu 0`
Thanks @scdrand23 for answering. @eyabesbes is this still a problem? If not, I'm going to close the issue.
Closing the issue due to lack of response. Looks like the problem is addressed.