Changes
- **BREAKING**: `cook_estimator`, `has_gradients`, and `use_named_args` are moved from
`utils` to `learning`.
- **BREAKING**: `normalize_dimensions` is moved from `utils` to `space`.
- **BREAKING**: `branin`, `hart3`, `hart6`, `poly2`, and `peaks` has been changed to noisy and noiseless `ModelSystem`s.
- Implemented tests for ModelSystems.
- `gold_map` exist as `ModelSystem`.
- Sampling consolidated. There is now only one sampling function per `Dimension`.
Different sampling types (at the moment, random value sampling and Latin Hypercube
Sampling (LHS)) are handled through `Space`, referencing the sampling functions of the
`Dimesion`s
- LHS now allows for arbitrary seeding, or for random seeding, better supporting
benchmarking. The algorithm still uses a fixed seed by default.
- The module `space` uses `np.random.default_rng` as a random number generator, instead
of the deprecated `np.random.RandomState`. A bridging strategy allows it to still
accept `RandomState`s, but it will tranform them to `default_rng` for internal use.
The rest of the codebase still uses `RandomState`.
- **BREAKING**: LHS now respects priors. This means that performing LHS on a space with
a log-normal `Real` `Dimension`, or a `Categorical` `Dimension` with informative
priors will give different results in this release than in previous releases.
- **BREAKING**: The mechanism for seeding pseudorandom generators in the `space` module
have changed, meaning that, while the results are reproducible within a release, they
will not be the same as in old releases.
- Bokeh is now (again) a required installation.
Bugfixes
- Fixes to `DataDependentNoise` and `SumNoise` to avoid highly correlated
noise of the underlying noise models.
- Switched to local imports internally to avoid circular import errors.
- `NoiseModel._noise_distribution` is now a method, to allow changes of
`self._rng` to affect `self._noise_distribution` automatically.
- Removed max_features='auto' to avoid using hardcoded variables to external functions