scikit-optimize
scikit-optimize copied to clipboard
Sequential model-based optimization with a `scipy.optimize` interface
Using `gp_minimize` on different processes (multiprocessing) causes a deadlock. Here's a simple example code to reproduce the issue. ``` from time import time import numpy as np from skopt import...
DeprecationWarning: `np.int` is a deprecated alias for the builtin `int` . Deprecated in Numpy 1.20
Can you add type hints to satisfy [mypy](http://mypy-lang.org/)? When importing anything from skopt, mypy reports: ``` error: Skipping analyzing "skopt": module is installed, but missing library stubs or py.typed marker...
Implementation of: - Unscented Expected Improvement; - Unscented Optimal Intercept; - Unscented Bayesian Optimization interface "unscented.py"
[Progress monitoring and control using callback argument of fit method example in this binder works OK - https://mybinder.org/v2/gh/scikit-optimize/scikit-optimize/a2369ddbc332d16d8ff173b12404b03fea472492?urlpath=lab%2Ftree%2Fnotebooks%2Fauto_examples%2Fsklearn-gridsearchcv-replacement.ipynb] When I try to run the Progress monitoring and control example on...
I am applying BO using GP to optimize my neural network. When having only categorical parameters (e.g. only activation functions) to optimize, the Hamming Kernel is used which runs into...
I am working on a multilabel classification and for now I have primarily been relying on `RandomizedSearchCV` from `scikit-learn` to perform hyperparameter optimization. I now started experimenting with `BayesSearchCV` and...
I am not sure if this is expected behavior or not, so this is a question and only potentially an actual issue: `gp_minimize` returns the lowest seen value. However, for...
I want to use the scikit-optimize package's plot_convergence to draw a convergence plot of my optimization results. The plot_convergence requires that the arguments are scipy.optimize.OptimizeResult. However, I am using my...
I think this is likely another issue with the recent versions of skearn (I'm using 0.24.0) but after optimising my model using `BayesSearchCV`, I can see all of the normal...