wrap forward passes with torch.no_grad() (#19412)
This commit is contained in:
@@ -437,6 +437,7 @@ class FlaubertModelIntegrationTest(unittest.TestCase):
|
||||
def test_inference_no_head_absolute_embedding(self):
|
||||
model = FlaubertModel.from_pretrained("flaubert/flaubert_base_cased")
|
||||
input_ids = torch.tensor([[0, 345, 232, 328, 740, 140, 1695, 69, 6078, 1588, 2]])
|
||||
with torch.no_grad():
|
||||
output = model(input_ids)[0]
|
||||
expected_shape = torch.Size((1, 11, 768))
|
||||
self.assertEqual(output.shape, expected_shape)
|
||||
|
||||
Reference in New Issue
Block a user