Skip to content

Commit

Permalink
Update Main Branch (#279)
Browse files Browse the repository at this point in the history
* chore: update files for new gitflow (#227)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.7...v4.2.2)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump actions/setup-python from 5.2.0 to 5.3.0 (#251)

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.2.0 to 5.3.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5.2.0...v5.3.0)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: New Robustness Regression Attacker: Ridge Poissoner (#241)

---------

Co-authored-by: Cristian Muñoz <cristian.munoz@holisticai.com>

* feat: new xai metrics based on globa feature importance, local feature importance and surrogate  (#255)
---------

Co-authored-by: Kleyton da Costa <kleyton.vsc@gmail.com>

* chore: Improve Accuracy Degradation Profile Documentation  (#249)

---------

Co-authored-by: crismunoz <crisstrink@gmail.com>

* docs:update tutorials (#257)

---------

Co-authored-by: crismunoz <crisstrink@gmail.com>

* add: bias tradeoff example (#266)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Kleyton da Costa <44351707+Kleyt0n@users.noreply.github.com>
Co-authored-by: andrelfnovaes <40208986+andrelfnovaes@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Franklin Cardenoso <44931423+fracarfer5@users.noreply.github.com>
Co-authored-by: Kleyton da Costa <kleyton.vsc@gmail.com>
  • Loading branch information
6 people authored Nov 19, 2024
1 parent b7fff06 commit ce6a83c
Show file tree
Hide file tree
Showing 8 changed files with 222 additions and 1,848 deletions.
6 changes: 3 additions & 3 deletions docs/source/getting_started/datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ For example, if we want to load the Adult dataset, we can use the following code

.. code-block:: python
from holisticai.datasets import load_adult
from holisticai.datasets import load_hai_datasets
data, target = load_adult(return_X_y=True)
data, target = load_hai_datasets(dataset_name="adult")
.. _processed_datasets:

Expand All @@ -49,4 +49,4 @@ You can use this processed datasets using the function load_dataset from holisti
from holisticai.datasets import load_dataset
dataset = load_dataset(dataset_name="adult", processed=True, protected_attribute="sex")
dataset = load_dataset(dataset_name="adult", preprocessed=True, protected_attribute="sex")
27 changes: 14 additions & 13 deletions docs/source/getting_started/raw_datasets.csv
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
Student,load_student,"Student performance dataset, used to predict students' grades based on various features."
Adult,load_adult,"Adult dataset, used for income classification tasks based on census data."
Law School,load_law_school,"Law school admission dataset, used to predict law school admission based on various features."
Last FM,load_last_fm,"Last FM dataset, used for music recommendation tasks based on user listening history."
US Crime,load_us_crime,"US Crime dataset, used to analyze and predict crime rates based on various socio-economic factors."
Heart,load_heart,"Heart failure clinical records dataset, used to predict heart failure events based on clinical features."
German Credit,load_german_credit,"German Credit dataset, used for credit risk classification based on financial and demographic factors."
Census KDD,load_census_kdd,"Census KDD dataset, used for income prediction based on detailed census data."
Bank Marketing,load_bank_marketing,"Bank Marketing dataset, used to predict whether a client will subscribe to a term deposit based on direct marketing campaigns."
Compas,load_compas_two_year_recid/load_compas_is_recid,"COMPAS dataset, used for recidivism prediction and analyzing bias in criminal justice algorithms."
Diabetes,load_diabetes,"Diabetes dataset, used for predicting the onset of diabetes based on health features."
ACS Income,load_acsincome,"American Community Survey Income dataset, used to predict income levels based on demographic and socioeconomic data."
ACS Public Coverage,load_acspublic,"American Community Survey Public Coverage dataset, used to analyze public health insurance coverage based on demographic data."
Student,load_hai_dataset("student"),"Student performance dataset, used to predict students' grades based on various features."
Adult,load_hai_dataset("adult"),"Adult dataset, used for income classification tasks based on census data."
Law School,load_hai_dataset("law_school"),"Law school admission dataset, used to predict law school admission based on various features."
Last FM,load_hai_dataset("lastfm"),"Last FM dataset, used for music recommendation tasks based on user listening history."
US Crime,load_hai_dataset("us_crime"),"US Crime dataset, used to analyze and predict crime rates based on various socio-economic factors."
Clinical Records,load_hai_dataset("clinical_records"),"Heart failure clinical records dataset, used to predict heart failure events based on clinical features."
German Credit,load_hai_dataset("german_credit"),"German Credit dataset, used for credit risk classification based on financial and demographic factors."
Census KDD,load_hai_dataset("census_kdd"),"Census KDD dataset, used for income prediction based on detailed census data."
Bank Marketing,load_hai_dataset("bank_marketing"),"Bank Marketing dataset, used to predict whether a client will subscribe to a term deposit based on direct marketing campaigns."
Compas,load_hai_dataset("compas_two_year_recid"),"COMPAS dataset, used for recidivism prediction and analyzing bias in criminal justice algorithms."
Compas,load_hai_dataset("compas_is_recid"),"COMPAS dataset, used for recidivism prediction and analyzing bias in criminal justice algorithms."
Diabetes,load_hai_dataset("diabetes"),"Diabetes dataset, used for predicting the onset of diabetes based on health features."
ACS Income,load_hai_dataset("acsincome"),"American Community Survey Income dataset, used to predict income levels based on demographic and socioeconomic data."
ACS Public Coverage,load_hai_dataset("acspublic"),"American Community Survey Public Coverage dataset, used to analyze public health insurance coverage based on demographic data."
6 changes: 1 addition & 5 deletions docs/source/reference/datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,4 @@
:template: function.rst
:toctree: .generated/

load_adult
load_last_fm
load_law_school
load_student
load_us_crime
load_hai_datasets
Loading

0 comments on commit ce6a83c

Please sign in to comment.