项目作者: EthicalML

项目描述 :
XAI - An eXplainability toolbox for machine learning
高级语言: Python
项目地址: git://github.com/EthicalML/xai.git
创建时间: 2019-01-11T20:00:09Z
项目社区:https://github.com/EthicalML/xai

开源协议:MIT License

下载


GitHub
GitHub
GitHub
GitHub

XAI - An eXplainability toolbox for machine learning

XAI is a Machine Learning library that is designed with AI explainability in its core. XAI contains various tools that enable for analysis and evaluation of data and models. The XAI library is maintained by The Institute for Ethical AI & ML, and it was developed based on the 8 principles for Responsible Machine Learning.

You can find the documentation at https://ethicalml.github.io/xai/index.html. You can also check out our talk at Tensorflow London where the idea was first conceived - the talk also contains an insight on the definitions and principles in this library.

YouTube video showing how to use XAI to mitigate undesired biases












This video of the talk presented at the PyData London 2019 Conference which provides an overview on the motivations for machine learning explainability as well as techniques to introduce explainability and mitigate undesired biases using the XAI Library.



Do you want to learn about more awesome machine learning explainability tools? Check out our community-built “Awesome Machine Learning Production & Operations” list which contains an extensive list of tools for explainability, privacy, orchestration and beyond.


0.1.0

If you want to see a fully functional demo in action clone this repo and run the Example Jupyter Notebook in the Examples folder.

What do we mean by eXplainable AI?

We see the challenge of explainability as more than just an algorithmic challenge, which requires a combination of data science best practices with domain-specific knowledge. The XAI library is designed to empower machine learning engineers and relevant domain experts to analyse the end-to-end solution and identify discrepancies that may result in sub-optimal performance relative to the objectives required. More broadly, the XAI library is designed using the 3-steps of explainable machine learning, which involve 1) data analysis, 2) model evaluation, and 3) production monitoring.

We provide a visual overview of these three steps mentioned above in this diagram:

XAI Quickstart

Installation

The XAI package is on PyPI. To install you can run:

  1. pip install xai

Alternatively you can install from source by cloning the repo and running:

  1. python setup.py install

Usage

You can find example usage in the examples folder.

1) Data Analysis

With XAI you can identify imbalances in the data. For this, we will load the census dataset from the XAI library.

  1. import xai.data
  2. df = xai.data.load_census()
  3. df.head()

View class imbalances for all categories of one column

  1. ims = xai.imbalance_plot(df, "gender")

View imbalances for all categories across multiple columns

  1. im = xai.imbalance_plot(df, "gender", "loan")

Balance classes using upsampling and/or downsampling

  1. bal_df = xai.balance(df, "gender", "loan", upsample=0.8)

Perform custom operations on groups

  1. groups = xai.group_by_columns(df, ["gender", "loan"])
  2. for group, group_df in groups:
  3. print(group)
  4. print(group_df["loan"].head(), "\n")

Visualise correlations as a matrix

  1. _ = xai.correlations(df, include_categorical=True, plot_type="matrix")

Visualise correlations as a hierarchical dendogram

  1. _ = xai.correlations(df, include_categorical=True)

Create a balanced validation and training split dataset

  1. # Balanced train-test split with minimum 300 examples of
  2. # the cross of the target y and the column gender
  3. x_train, y_train, x_test, y_test, train_idx, test_idx = \
  4. xai.balanced_train_test_split(
  5. x, y, "gender",
  6. min_per_group=300,
  7. max_per_group=300,
  8. categorical_cols=categorical_cols)
  9. x_train_display = bal_df[train_idx]
  10. x_test_display = bal_df[test_idx]
  11. print("Total number of examples: ", x_test.shape[0])
  12. df_test = x_test_display.copy()
  13. df_test["loan"] = y_test
  14. _= xai.imbalance_plot(df_test, "gender", "loan", categorical_cols=categorical_cols)

2) Model Evaluation

We are able to also analyse the interaction between inference results and input features. For this, we will train a single layer deep learning model.

  1. model = build_model(proc_df.drop("loan", axis=1))
  2. model.fit(f_in(x_train), y_train, epochs=50, batch_size=512)
  3. probabilities = model.predict(f_in(x_test))
  4. predictions = list((probabilities >= 0.5).astype(int).T[0])

Visualise permutation feature importance

  1. def get_avg(x, y):
  2. return model.evaluate(f_in(x), y, verbose=0)[1]
  3. imp = xai.feature_importance(x_test, y_test, get_avg)
  4. imp.head()

Identify metric imbalances against all test data

  1. _= xai.metrics_plot(
  2. y_test,
  3. probabilities)

Identify metric imbalances across a specific column

  1. _ = xai.metrics_plot(
  2. y_test,
  3. probabilities,
  4. df=x_test_display,
  5. cross_cols=["gender"],
  6. categorical_cols=categorical_cols)

Identify metric imbalances across multiple columns

  1. _ = xai.metrics_plot(
  2. y_test,
  3. probabilities,
  4. df=x_test_display,
  5. cross_cols=["gender", "ethnicity"],
  6. categorical_cols=categorical_cols)

Draw confusion matrix

  1. xai.confusion_matrix_plot(y_test, pred)

Visualise the ROC curve against all test data

  1. _ = xai.roc_plot(y_test, probabilities)

Visualise the ROC curves grouped by a protected column

  1. protected = ["gender", "ethnicity", "age"]
  2. _ = [xai.roc_plot(
  3. y_test,
  4. probabilities,
  5. df=x_test_display,
  6. cross_cols=[p],
  7. categorical_cols=categorical_cols) for p in protected]

Visualise accuracy grouped by probability buckets

  1. d = xai.smile_imbalance(
  2. y_test,
  3. probabilities)

Visualise statistical metrics grouped by probability buckets

  1. d = xai.smile_imbalance(
  2. y_test,
  3. probabilities,
  4. display_breakdown=True)

Visualise benefits of adding manual review on probability thresholds

  1. d = xai.smile_imbalance(
  2. y_test,
  3. probabilities,
  4. bins=9,
  5. threshold=0.75,
  6. manual_review=0.375,
  7. display_breakdown=False)