forked from autogluon/autogluon-fair
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename build_x to use CamelCase to indicate constructors
- Loading branch information
1 parent
98b1896
commit 03ba45d
Showing
17 changed files
with
58 additions
and
526 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .learners import (FairPredictor, inferred_attribute_builder, single_threshold, build_data_dict, | ||
DeepFairPredictor, build_deep_dict) | ||
from .learners import (FairPredictor, inferred_attribute_builder, single_threshold, DataDict, | ||
DeepFairPredictor, DeepDataDict) | ||
from .utils import performance, group_metrics, conditional_group_metrics, dataset_loader | ||
|
||
__all__ = (FairPredictor, inferred_attribute_builder, single_threshold, build_data_dict, | ||
performance, group_metrics, conditional_group_metrics, DeepFairPredictor, build_deep_dict, dataset_loader) | ||
__all__ = (FairPredictor, inferred_attribute_builder, single_threshold, DataDict, | ||
performance, group_metrics, conditional_group_metrics, DeepFairPredictor, DeepDataDict, dataset_loader) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .fair import (FairPredictor, inferred_attribute_builder, single_threshold, build_data_dict, | ||
DeepFairPredictor, build_deep_dict) | ||
from .fair import (FairPredictor, inferred_attribute_builder, single_threshold, DataDict, | ||
DeepFairPredictor, DeepDataDict) | ||
|
||
__all__ = (FairPredictor, inferred_attribute_builder, single_threshold, build_data_dict, DeepFairPredictor, | ||
build_deep_dict) | ||
__all__ = (FairPredictor, inferred_attribute_builder, single_threshold, DataDict, DeepFairPredictor, | ||
DeepDataDict) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters