Update target TPR of MIA #102
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
This diff adds support for configurable TPR (True Positive Rate) targets in MIA.
Key Changes:
tpr_targetparameter: Allows users to specify a custom TPR threshold (default behavior remains 1% if not specified)tpr_threshold_widthparameter: Controls the granularity of TPR thresholds (default: 0.25%)tpr_threshold_width(must be positive and evenly divide 99%, e.g., 0.1%, 0.25%, 0.3%, 0.5%, etc.)test_get_tpr_index_none_targetto verify legacy behavior (Returns index 0 whentpr_target=None)test_get_tpr_index_with_targetto verifyget_tpr_indexreturns the correct indextest_tpr_threshold_width_positive_validationto verify ValueError is raised whentpr_threshold_width <= 0test_tpr_threshold_width_divisibility_validationto verify ValueError is raised whentpr_threshold_widthdoesn't evenly divide 0.99Backward Compatibility:
tpr_targetcontinue to use the original 1% TPR with 100 thresholdsDifferential Revision: D92439701