You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
image_dataloader = DataLoader(image_dataset, batch_size=4,
shuffle=True, num_workers=4)
for i,sample in enumerate(image_dataloader):
sample['image']=sample['image']
print(i,sample['image'].shape,sample['img_path'],sample['Label'])
if i>5:
break
关于视频动作分类的初级教程.ipynb
sample['image']=sample['image']是没用的吧?感谢教程~~~