Unverified Commit f134d385 authored by Partho's avatar Partho Committed by GitHub
Browse files

wrap forward passes with torch.no_grad() (#19279)

parent cd024da6
...@@ -384,7 +384,8 @@ class DeiTModelIntegrationTest(unittest.TestCase): ...@@ -384,7 +384,8 @@ class DeiTModelIntegrationTest(unittest.TestCase):
inputs = feature_extractor(images=image, return_tensors="pt").to(torch_device) inputs = feature_extractor(images=image, return_tensors="pt").to(torch_device)
# forward pass # forward pass
outputs = model(**inputs) with torch.no_grad():
outputs = model(**inputs)
# verify the logits # verify the logits
expected_shape = torch.Size((1, 1000)) expected_shape = torch.Size((1, 1000))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment