Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add a changelog #59

Merged
merged 9 commits into from
May 23, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Added

- Added `n_points` parameter to all functions in `shap.datasets` (#39).
- Added the ruff linter (#25, #26, #27).

### Fixed

- Fixed installation of package via setuptools (#51).
connortann marked this conversation as resolved.
Show resolved Hide resolved
- Fixed failing unit tests (#29).
- Fixed deprecation warnings from `numpy` types (#7).
- Fixed deprecation warnings from `Ipython.core.display` (#13).
- Fixed deprecation warnings from `tensorflow` optimisers (#16).
- Fixed deprecation warnings from `sklearn.linear_model` (#22).
connortann marked this conversation as resolved.
Show resolved Hide resolved
- Fixed `plot.waterfall` yticklabels with boolean features (#58).

### Changed

- `shap.datasets` sampling changed to without replacement (#36).
connortann marked this conversation as resolved.
Show resolved Hide resolved

### Removed

- Deprecated the Boston house price dataset (#38).
- Removed the unused `mimic.py` file (#53).
connortann marked this conversation as resolved.
Show resolved Hide resolved

## [0.41.0] - 2022-06-16 (parent repo)

For details of previous changes, see the release page of the parent repository
[here](https://github.com/slundberg/shap/releases).
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

This repository is a fork of Scott Lundberg's popular [shap](https://github.com/slundberg/shap) library. Unfortunately, the original shap repo is not currently maintained. This fork attempts to fix shap's current issues and merge old PRs. See the general discussion on the purpose of this repo [here](https://github.com/dsgibbons/shap/discussions/11).

**New contributors are very welcome**, so please feel free to get involved!
## What has changed on this fork?

This fork primarily adds bug fixes and deprecation updates, to ensure that `shap` works with the latest versions of other libaries. Check out the [changelog](CHANGELOG.md) for full details of updates.

## Contributing

**New contributors are very welcome** so please feel free to get involved, for example by submitting PRs or opening issues!

We are eager to build a broad pool of maintainers, to avoid having a single person responsible for the entire repostitory. This repo adopts a _liberal contribution governance model_, where project decisions are based on a consensus seeking process. For more information, see [here](https://medium.com/the-node-js-collection/healthy-open-source-967fa8be7951).

Expand Down