Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI Python

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
ci-python:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Code-Scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: code scan

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
analyze:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Python linting

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


[![Build Status](https://dev.azure.com/responsibleai/interpret-community/_apis/build/status/Nightly?branchName=master)](https://dev.azure.com/responsibleai/interpret-community/_build/latest?definitionId=41&branchName=master)
[![Build Status](https://dev.azure.com/responsibleai/interpret-community/_apis/build/status/Nightly?branchName=main)](https://dev.azure.com/responsibleai/interpret-community/_build/latest?definitionId=41&branchName=main)
![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)
![versions](https://img.shields.io/badge/python-3.6-blue?link=https://www.python.org/downloads/release/python-360)
![PyPI](https://img.shields.io/pypi/v/interpret-community?color=blue?link=http://pypi.org/project/interpret-community/)
Expand Down
2 changes: 1 addition & 1 deletion devops/Code-Coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ schedules:
displayName: Nightly Code Coverage Build
branches:
include:
- master
- main
always: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion devops/PR-Gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ variables:
EnvFileStem: 'environment'

pr:
- master
- main

trigger: none # No CI build

Expand Down
2 changes: 1 addition & 1 deletion devops/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Testing Strategy

Currently, test pipelines are run when PRs are made to master and nightly. The nightly badge on the root README of the repo reflects the nightly unit tests.
Currently, test pipelines are run when PRs are made to main and nightly. The nightly badge on the root README of the repo reflects the nightly unit tests.

The Windows test pipelines are run against PRs and nightly and should run successfully.
The Mac test pipeline also runs nightly, but currently has known failures. These failures are not expected to affect the user experience of Mac users.
2 changes: 1 addition & 1 deletion devops/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ schedules:
displayName: Nightly Build
branches:
include:
- master
- main
always: true

pool:
Expand Down
6 changes: 3 additions & 3 deletions docs/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ _patch = <enter new patch version here>

In the notes make sure to mention all of the changes that have been introduced since the last release. Usually you can take the main description in the PR.

After the PR has been merged, checkout the master branch and get the latest code.
After the PR has been merged, checkout the main branch and get the latest code.

## Release notes

On the main page, click on releases, and select "Draft a new release".

In "tag version", enter the version in the format v0.*.*, for example v0.10.0. Keep the target as master branch.
In "tag version", enter the version in the format v0.*.*, for example v0.10.0. Keep the target as main branch.

In release title, enter either "Patch release v0.*.*" or "Release v0.*.*".

Expand Down Expand Up @@ -63,7 +63,7 @@ password: PASSWORD_REMOVED

### Clean repo

Make sure the repo is clean prior to release on the master branch, run:
Make sure the repo is clean prior to release on the main branch, run:

```
git clean -fdx
Expand Down
16 changes: 8 additions & 8 deletions python/docs/notebooks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Example Notebooks

Please take a look at our example notebooks in the `notebooks/` directory:

- `Blackbox interpretability for binary classification <https://github.com/interpretml/interpret-community/blob/master/notebooks/explain-binary-classification-local.ipynb>`_
- `Blackbox interpretability for multi-class classification <https://github.com/interpretml/interpret-community/blob/master/notebooks/explain-multiclass-classification-local.ipynb>`_
- `Blackbox interpretability for regression <https://github.com/interpretml/interpret-community/blob/master/notebooks/explain-regression-local.ipynb>`_
- `Blackbox interpretability with simple raw feature transformations <https://github.com/interpretml/interpret-community/blob/master/notebooks/simple-feature-transformations-explain-local.ipynb>`_
- `Blackbox interpretability with advanced raw feature transformations <https://github.com/interpretml/interpret-community/blob/master/notebooks/advanced-feature-transformations-explain-local.ipynb>`_
- `Captum integration example <https://github.com/interpretml/interpret-community/blob/master/notebooks/captum-integration-example.ipynb>`_
- `Explain binary classification model predictions on GPU <https://github.com/interpretml/interpret-community/blob/master/notebooks/explain-binary-classification-local-gpu.ipynb>`_
- `Explain regression model predictions using MimicExplainer <https://github.com/interpretml/interpret-community/blob/master/notebooks/explain-regression-mimic-explainer.ipynb>`_
- `Blackbox interpretability for binary classification <https://github.com/interpretml/interpret-community/blob/main/notebooks/explain-binary-classification-local.ipynb>`_
- `Blackbox interpretability for multi-class classification <https://github.com/interpretml/interpret-community/blob/main/notebooks/explain-multiclass-classification-local.ipynb>`_
- `Blackbox interpretability for regression <https://github.com/interpretml/interpret-community/blob/main/notebooks/explain-regression-local.ipynb>`_
- `Blackbox interpretability with simple raw feature transformations <https://github.com/interpretml/interpret-community/blob/main/notebooks/simple-feature-transformations-explain-local.ipynb>`_
- `Blackbox interpretability with advanced raw feature transformations <https://github.com/interpretml/interpret-community/blob/main/notebooks/advanced-feature-transformations-explain-local.ipynb>`_
- `Captum integration example <https://github.com/interpretml/interpret-community/blob/main/notebooks/captum-integration-example.ipynb>`_
- `Explain binary classification model predictions on GPU <https://github.com/interpretml/interpret-community/blob/main/notebooks/explain-binary-classification-local-gpu.ipynb>`_
- `Explain regression model predictions using MimicExplainer <https://github.com/interpretml/interpret-community/blob/main/notebooks/explain-regression-mimic-explainer.ipynb>`_
2 changes: 1 addition & 1 deletion python/docs/visualizations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Once you load the visualization dashboard, you can investigate different aspects
Click on "Open in a new tab" on the top left corner to get a better view of the dashboard in a new tab.


You can further create custom cohorts (subgroups of your dataset) to explore the insights across different subgroups (e.g., women vs. men). The created cohorts can contain more than one filter (e.g., age < 30 and sex = female) and will be visible from all of the four tabs. The following sections demonstrate the visualization dashboard capabilities on a `classification model trained on employee attrition dataset <https://github.com/interpretml/interpret-community/blob/master/notebooks/simple-feature-transformations-explain-local.ipynb>`_. Besides the default cohort (including the whole dataset), there are two additional cohorts created: employees with Age <= 35 and employees with Age > 35.
You can further create custom cohorts (subgroups of your dataset) to explore the insights across different subgroups (e.g., women vs. men). The created cohorts can contain more than one filter (e.g., age < 30 and sex = female) and will be visible from all of the four tabs. The following sections demonstrate the visualization dashboard capabilities on a `classification model trained on employee attrition dataset <https://github.com/interpretml/interpret-community/blob/main/notebooks/simple-feature-transformations-explain-local.ipynb>`_. Besides the default cohort (including the whole dataset), there are two additional cohorts created: employees with Age <= 35 and employees with Age > 35.

.. image:: ./Cohorts.png
:alt: Visualization Dashboard Cohorts
Expand Down