jfzhang95 / pytorch-video-recognition

PyTorch implemented C3D, R3D, R2Plus1D models for video activity recognition.
MIT License
1.16k stars 250 forks source link

Some questions about the file dataset.py. #53

Open Y1YU opened 3 years ago

Y1YU commented 3 years ago

Did anyone run dataset.py? I try to run the file, but it seems that it doesn't run. When I run the following code

for i, sample in enumerate(train_loader):
        inputs = sample[0]
        labels = sample[1]
        print(inputs.size())
        print(labels)
        if i == 1:
            break

it is running but has no progress.