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
In core.test_label_eligible we're calling _test_label_disposition like so: (disposition, action_idx) = self._test_label_disposition(label, apply_reflexive_mapping=not is_variant)
But the apply_reflexive_mapping param of _test_label_disposition is described as:
apply_reflexive_mapping: Whether the reflexive mapping should be considereed for disposition
(This should be True when evaluating a variant)
Is it correct that we're inverting is_variant here? That seems contradictory with the comment.
The text was updated successfully, but these errors were encountered:
In
core.test_label_eligible
we're calling_test_label_disposition
like so:(disposition, action_idx) = self._test_label_disposition(label, apply_reflexive_mapping=not is_variant)
But the
apply_reflexive_mapping
param of_test_label_disposition
is described as:Is it correct that we're inverting
is_variant
here? That seems contradictory with the comment.The text was updated successfully, but these errors were encountered: