Skip to content

Commit

Permalink
FACTS: exposed wrapper function to calling code
Browse files Browse the repository at this point in the history
Specifically, re-exported the function from sklearn.detectors.__init__

Signed-off-by: phantom-duck <[email protected]>
  • Loading branch information
phantom-duck committed Mar 8, 2024
1 parent bcc2033 commit 77701a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aif360/sklearn/detectors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
Methods for detecting subsets for which a model or dataset is biased.
"""
from aif360.sklearn.detectors.detectors import bias_scan
from aif360.sklearn.detectors.facts import FACTS
from aif360.sklearn.detectors.facts import FACTS, FACTS_bias_scan

__all__ = [
'bias_scan',
'FACTS'
'FACTS',
'FACTS_bias_scan',
]

0 comments on commit 77701a6

Please sign in to comment.