use torch.testing.assertclose instead to get more details about error in cis (#35659)
* use torch.testing.assertclose instead to get more details about error in cis * fix * style * test_all * revert for I bert * fixes and updates * more image processing fixes * more image processors * fix mamba and co * style * less strick * ok I won't be strict * skip and be done * up
This commit is contained in:
@@ -507,4 +507,6 @@ class RemBertModelIntegrationTest(unittest.TestCase):
|
||||
# [-0.15887849032878876, -0.054529931396245956, 0.5356100797653198]
|
||||
# ]]
|
||||
|
||||
self.assertTrue(torch.allclose(output["last_hidden_state"][:, :, :3], expected_implementation, atol=1e-4))
|
||||
torch.testing.assert_close(
|
||||
output["last_hidden_state"][:, :, :3], expected_implementation, rtol=1e-4, atol=1e-4
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user