pytorch-video-recognition
pytorch-video-recognition copied to clipboard
Some questions about the file dataset.py.
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.