Hi, I’m new to Pytorch. When I use for loop in Dataloder, it always auto log lists like below.
for image, mask in trainloader:
break
print(f"batch image shape : {image.shape}")
print(f"batch in mask shape : {mask.shape}")
Is there a way to disable that log lists?