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:
@@ -784,7 +784,7 @@ class GgufIntegrationTests(unittest.TestCase):
|
||||
if "mixer.A_log" in layer_name:
|
||||
# we should increase tolerance after exponential reversing
|
||||
# and performing np.log(-weights) operation as numbers are slightly different
|
||||
torch.testing.assert_close(original_params, converted_state_dict[layer_name], atol=1e-3, rtol=1e-3)
|
||||
torch.testing.assert_close(original_params, converted_state_dict[layer_name], rtol=1e-3, atol=1e-3)
|
||||
else:
|
||||
torch.testing.assert_close(original_params, converted_state_dict[layer_name])
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user