Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2022-10-28 | 1.5 kB | |
v0.8.0 source code.tar.gz | 2022-10-28 | 1.1 MB | |
v0.8.0 source code.zip | 2022-10-28 | 1.3 MB | |
Totals: 3 Items | 2.4 MB | 0 |
- Relaxed checks made on
X
in_validate_and_reformat_input()
since that is the concern of the underlying estimator and not Fairlearn. - Add support for Python 3.9 and 3.10, remove support for Python 3.6 and 3.7
- Added error handling in
MetricFrame
. Methodsgroup_max
,group_min
,difference
andratio
now accepterrors
as a parameter, which could either beraise
orcoerce
. - Fixed a bug whereby passing a custom
grid
object to aGridSearch
reduction would result in aKeyError
if the column names were not ordered integers. fairlearn.preprocessing.CorrelationRemover
now exposesn_features_in_
andfeature_names_in_
.- Added the ACSIncome dataset and corresponding documentation.
- Add
sphinxcontrib-bibtex
extension to manage citations in documentation using bibtex. - Added support for explicitly specifying optimization objective in
fairlearn.reductions.ExponentiatedGradient
. Added support for cost sensitive classification infairlearn.reductions.ErrorRate
. - Internal performance improvements for
fairlearn.metrics.MetricFrame
. Some results may now have a more appropriate type thanobject
, but otherwise the only visible difference should be a substantial speed increase. - Added
fairlearn.metrics.plot_model_comparison
to create scatter plots for comparing multiple models along two metrics. - Added adversarial mitigation approaches
fairlearn.adversarial.AdversarialFairnessClassifier
andfairlearn.adversarial.AdversarialFairnessRegressor
.