laura-wang / video-pace

code for our ECCV-2020 paper: Self-supervised Video Representation Learning by Pace Prediction
98 stars 12 forks source link

What does self.rgb_lines = list(lines) * 10 mean? #15

Open litingfeng opened 3 years ago

litingfeng commented 3 years ago

Hi,

Thank you for your great work.

While I want to apply this method on my custom data, I found this line in ucf101.py.

Why do you multiply 10 here?

Thank you

laura-wang commented 3 years ago

Hi,

Thanks for your interests in our work.

Regarding the epoch number, we follow the work "Self-Supervised Learning by Cross-Modal Audio-Video Clustering" to allow more temporal augmentation in the same epoch. And the total training epoch is 180, actually. In practice, we find it works pretty well so we keep this practice.

Probably,to just directly use 180 epochs should also work well (the learning rate schedule should be adjusted accordingly). You can try on your own~