You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/home/circleci/project/test/test_extended_models.py", line 276, in test_schema_meta_validation
assert not incorrect_meta
AssertionError: assert not [(MaskRCNN_ResNet50_FPN_V2_Weights.COCO_V1, '_ops')]
Turns out the get_ops() function is sensitive to the random seed which leads to different computed OPS and makes the test fail. I don't know if it's get_ops() who's wrong, or if there is something inherently buggy in MaskRCNN. Or if this is expected and we just need to set the random seed. IDK.
We have to skip this test for now to unblock the release, but we should go back to it.
The text was updated successfully, but these errors were encountered:
This test is randomly failing:
Due to this check:
vision/test/test_extended_models.py
Lines 265 to 267 in 547dd1d
Turns out the
get_ops()
function is sensitive to the random seed which leads to different computed OPS and makes the test fail. I don't know if it'sget_ops()
who's wrong, or if there is something inherently buggy in MaskRCNN. Or if this is expected and we just need to set the random seed. IDK.We have to skip this test for now to unblock the release, but we should go back to it.
The text was updated successfully, but these errors were encountered: