File: v0.8.rst

package info (click to toggle)
scikit-optimize 0.10.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,672 kB
  • sloc: python: 10,659; javascript: 438; makefile: 136; sh: 6
file content (75 lines) | stat: -rw-r--r-- 2,175 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.. include:: _contributors.rst

.. currentmodule:: skopt

.. _changes_0_8_1:

Version 0.8.1
=============
**September 2020**

- |Fix| GaussianProcessRegressor on sklearn 0.23 normalizes the
  variance to 1, which needs to reverted on predict.

.. _changes_0_8:

Version 0.8.0
=============
**September 2020**

:mod:`skopt.Optimizer`
----------------------
- |Enhancement| n_jobs support was added to Optimizer and
  fixed for forest_minimize
  by :user:`Holger Nahrstaedt <holgern>`
  by :user:`JPN <jonathanng>`

:mod:`skopt.plots`
------------------
- |Enhancement| Allow dimension selection for plot_objective
  and plot_evaluations and add plot_histogram and plot_objective_2D.
  Plot code has been refactored.
  by :user:`Holger Nahrstaedt <holgern>`
  by :user:`Hvass-Labs <Hvass-Labs>`

:mod:`skopt.sampler`
--------------------
- |MajorFeature| Initial sampling generation
  from latin hypercube, sobol, hammersly and halton
  is possible and can be set in all optimizers
  :user:`Holger Nahrstaedt <holgern>`
- |Enhancement| Improve sampler and add grid sampler
  by :user:`Holger Nahrstaedt <holgern>`

:mod:`skopt.searchcv`
---------------------
- |Fix| Fix library for scikit-learn >= 0.23.
  numpy MaskArray is replaced by numpy.ma.array.
  y_normalize=False has been added and initial runs
  has been increased.
  by :user:`Lucas Plagwitz <lucasplagwitz>`

:mod:`skopt.space`
------------------
- |Fix| Fix Integer transform and inverse_transform for normalize
  by :user:`Holger Nahrstaedt <holgern>`
- |Enhancement| Add `is_constant`  property to dimension and
  `n_constant_dimensions` property to Space
  by :user:`Holger Nahrstaedt <holgern>`
- |Enhancement| Skip constant dimensions for plot_objective and
  plot_evaluations
  to allow plots using BayesSearchCV
  by :user:`Holger Nahrstaedt <holgern>`

:mod:`skopt.utils`
------------------
- |Fix| Fix Optimizer for full categorical spaces
  by :user:`Holger Nahrstaedt <holgern>`

Miscellaneous
-------------
- Improve circle ci
  by :user:`Holger Nahrstaedt <holgern>`
- Add project toml and adapt minimal numpy, scipy, pyyaml and
  joblib version in setup.py
  by :user:`Holger Nahrstaedt <holgern>`