MATNet icon indicating copy to clipboard operation
MATNet copied to clipboard

Loader Issues

Open MSiam opened this issue 2 years ago • 2 comments

Hi I was training the code and I bumped upon this issue which I wasn't sure why it was happening?

In davis2017_youtubevos_ehem.py line 74 it sets the foreground to 255, but then the random augmentations in custome_transforms.py line 47 is if ((tmp == 0) | (tmp == 1)): It will use Nearest Interpolation. Should this be 255 instead of 1?

Cause when I debugged the loader it seems the output for the groundtruth mask is not 0/255 only.

Thanks for your help in advance

MSiam avatar Aug 21 '21 00:08 MSiam

I also wasn't sure what to use in the weightedBCE code for the threshold as in the paper you use 0.2 but the code seems to just use anything above 0.

It would be really great to clarify this thanks

MSiam avatar Aug 21 '21 00:08 MSiam

I also had a question on your PyramidDilatedConv module in line https://github.com/tfzhou/MATNet/blob/c8b95e527c486c304f711cc7dffb060f31abe19f/modules/MATNet.py#L446

it seems to only use block1 and block2, block3 are not used. Is this an issue? Thanks for your help.

MSiam avatar Sep 02 '21 17:09 MSiam