Skip to content

Commit c767532

Browse files
committed
Changelog for v0.0.5 and Readme fix for pip install of HyperSHAP
1 parent f32bfdc commit c767532

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# v0.0.5
2+
3+
## Features
4+
- Added seed parameter for controlled pseudo-randomization
5+
- Dealing with conditions on hyperparameters of configuration spaces
6+
7+
## Improvements
8+
- Bumped shapiq dependency to most recent version (v1.4.1)
9+
- Automatically configure approximator with the help of shapiq's helper function.
10+
11+
## Documentation
12+
- Added installation instructions to README.md for pip install.
13+
114
# v0.0.4
215
- Added pseudorandomization
316
- Added index-specific approximation

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,21 @@ HyperSHAP – a game‑theoretic Python library for explaining Hyperparameter Op
3535

3636
## Installation
3737

38+
First, create a virtual environment, e.g., via `conda`:
3839
```sh
40+
$ conda create -n hypershap python=3.10
41+
$ conda activate hypershap
42+
```
43+
44+
Now, you can just pip install HyperSHAP as follows:
45+
```sh
46+
$ pip install hypershap
47+
```
48+
49+
Or, clone the git repository and install hypershap via the Makefile:
50+
```sh
51+
$ git clone https://github.com/automl/hypershap
52+
$ cd hypershap
3953
$ make install
4054
```
4155

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hypershap"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "HyperSHAP is a post-hoc explanation method for hyperparameter optimization."
55
authors = [{ name = "Marcel Wever", email = "[email protected]" }]
66
readme = "README.md"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)