Hello,
Thanks for sharing the source code for the great work, which can benefit a lot. I have a question about the results generated from the code.
First, I found some bugs from the jupyter code. For instance
# apply patch
tform_batch = get_random_tform_batch(len(image_batch))
Should it be
tform_batch = get_random_tform_batch(image_batch)
I think the input of this function should be images instead of a int number.
After fixing that, I found I cannot generate similar results reported in the paper. Mine is as follows (run for 5 times and select the best results). My mAP is very high (around 0.25). It looks very different compared to the zebra one in the paper and the notebook. I feel it may be because the randomness things for initialization or others. I am not very sure if there exists some other problems. Could you please help me on that? I think what I did is just change the path and the bugs I reported above, but can get a much worse results. Thanks a lot!

Hello,
Thanks for sharing the source code for the great work, which can benefit a lot. I have a question about the results generated from the code.
First, I found some bugs from the jupyter code. For instance
# apply patch
tform_batch = get_random_tform_batch(len(image_batch))
Should it be
tform_batch = get_random_tform_batch(image_batch)
I think the input of this function should be images instead of a int number.
After fixing that, I found I cannot generate similar results reported in the paper. Mine is as follows (run for 5 times and select the best results). My mAP is very high (around 0.25). It looks very different compared to the zebra one in the paper and the notebook. I feel it may be because the randomness things for initialization or others. I am not very sure if there exists some other problems. Could you please help me on that? I think what I did is just change the path and the bugs I reported above, but can get a much worse results. Thanks a lot!