rohitrango / objects-that-sound

Unofficial Implementation of Google Deepmind's paper `Objects that Sound`
83 stars 16 forks source link

start = 8002 in get_video_audio.py #3

Closed yikaiw closed 5 years ago

yikaiw commented 5 years ago

There is start = 8002 in line 183 of get_video_audio.py. What's 8002 for? And what's the number if validation is True?

ShilpaSangappa commented 5 years ago

I believe, start is a variable placed to avoid downloading videos which have already been downloaded. This is helpful if the download script fails in between(because of network issues, etc). Say you have downloaded 2000 videos and the script fails. You could set start=2001 and start running the script again.

And I don't think this has anything to do with validation being True or False.

yikaiw commented 5 years ago

I believe, start is a variable placed to avoid downloading videos which have already been downloaded. This is helpful if the download script fails in between(because of network issues, etc). Say you have downloaded 2000 videos and the script fails. You could set start=2001 and start running the script again.

And I don't think this has anything to do with validation being True or False.

I understand now. Thank you.