pytorch-video-recognition icon indicating copy to clipboard operation
pytorch-video-recognition copied to clipboard

Some questions about the file dataset.py.

Open Y1YU opened this issue 5 years ago • 0 comments
trafficstars

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.

Y1YU avatar Nov 12 '20 12:11 Y1YU