-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
video datasets (UCF101, Kinetics400) download error (downloading nothing) #3854
Comments
Hey @sejongpyo. What exactly do you mean by
? It seems your iteration does nothing which might be a result of no data available in |
|
Nope. You can download the |
I'm trying to get some video datasets. I followed the documentation but keep getting an error.
`from torchvision.datasets import UCF101
from torchvision.datasets import Kinetics400
ucf_data_dir = "./data"
ucf_label_dir = "./ucfTrainTestlist"
ucf = UCF101(root = ucf_data_dir, annotation_path = ucf_label_dir, frames_per_clip = frames_per_clip,
![image](https://user-images.githubusercontent.com/68941421/118649005-f9d54c80-b81d-11eb-8fb9-55128ee85b4b.png)
step_between_clips = step_between_clips)
kin = Kinetics400(root = ucf_data_dir, frames_per_clip = frames_per_clip,
step_between_clips = step_between_clips)
`
How to fix this?
cc @pmeier
The text was updated successfully, but these errors were encountered: