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 am trying to recreate the results on UCF-101 using the provided pretrained models for PlayingViolin and IceDancing. I am using the test_refine.py script for testing, but I am getting odd results:
The only thing in the code I changed to make the code run is:
Hi,
Thanks for your interest! I checked your GIF files, it seems that the size of the input image is 256x256, however, the provided pre-trained models were trained by using images of size 128x128. So could please run the inference again with images of a smaller size?
Hello,
I am trying to recreate the results on UCF-101 using the provided pretrained models for
PlayingViolin
andIceDancing
. I am using thetest_refine.py
script for testing, but I am getting odd results:The only thing in the code I changed to make the code run is:
seg2vid/src/test_refine.py
Line 123 in 8240c8c
I had to change this line from
z_m = Vb(z_noise.repeat(frame1.size()[0] * 8, 1))
to
z_m = Vb(z_noise.repeat(frame1.size()[0] * 2 * 8, 1))
Without this change, I received an error complaining about the incorrect size of
z_m
.Please advise on more details about UCF-101 inferences in order to reproduce your result. Thank you in advance!
The text was updated successfully, but these errors were encountered: