Skip to content

Commit 69f7633

Browse files
authored
Update: Version bump with changelog (#242)
1 parent 175f798 commit 69f7633

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

ConfigSpace/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "0.4.21"
4+
__version__ = "0.5.0"

changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Version 0.5.0
2+
3+
* Fix #231: Links to the pcs formats.
4+
* Fix #230: Allow Forbidden Clauses with non-numeric values.
5+
* Fix #232: Equality `==` between hyperparameters now considers default values.
6+
* Fix #221: Normal Hyperparameters should now properly sample from correct distribution in log space
7+
* Fix #221: Fixed boundary problems with integer hyperparameters due to numerical rounding after sampling.
8+
* Maint #221: Categorical Hyperparameters now always have associated probabilities, remaining uniform if non are provided. (Same behaviour)
9+
* Add #222: BetaFloat and BetaInteger hyperparamters, hyperparameters distributed according to a beta distribution.
10+
* Add #241: Implements support for [PiBo](https://openreview.net/forum?id=MMAeCXIa89), you can now embed some prior distribution knowledge into ConfigSpace hyperparameters.
11+
* See the example [here](https://automl.github.io/ConfigSpace/master/User-Guide.html#th-example-placing-priors-on-the-hyperparameters).
12+
* Hyperparameters now have a `pdf(vector: np.ndarray) -> np.ndarray` to get the probability density values for the input
13+
* Hyperparameters now have a `get_max_density() -> float` to get the greatest value in it's probability distribution function, the probability of the mode of the distriubtion.
14+
* `ConfigurationSpace` objects now have a `remove_parameter_priors() -> ConfigurationSpace` to remove any priors
15+
116
# Version 0.4.21
217

318
* Add #224: Now builds binary wheels for Windows/Mac/Linux, available on PyPI.

0 commit comments

Comments
 (0)