Skip to content

Commit 88b6d45

Browse files
committed
removed comment
1 parent 676c17d commit 88b6d45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intermediate_source/torchvision_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ expects during training and inference time with random tensors.
314314
315315
model = torchvision.models.detection.fasterrcnn_resnet50_fpn(pretrained=True)
316316
images,boxes,labels = torch.rand(4,3,600,1200), torch.rand(4,11,4), torch.rand(4,11) # For Training
317-
images = list(image for image in images) # This is handled by GeneralizedRCNNTransform
317+
images = list(image for image in images)
318318
targets = []
319319
for i in range(len(images)):
320320
d = {}

0 commit comments

Comments
 (0)