GithubHelp home page GithubHelp logo

AttributeError: 'Sum' object has no attribute 'gradient_x' when using sci-kit learn RBF for sci-kit optimize gp_minimize about scikit-optimize HOT 3 OPEN

mahdiabdollahpour avatar mahdiabdollahpour commented on June 11, 2024
AttributeError: 'Sum' object has no attribute 'gradient_x' when using sci-kit learn RBF for sci-kit optimize gp_minimize

from scikit-optimize.

Comments (3)

mahdiabdollahpour avatar mahdiabdollahpour commented on June 11, 2024 2

@mahdiabdollahpour try

from skopt.learning.gaussian_process.kernels import RBF

instead of

from sklearn.gaussian_process.kernels import RBF

It seems that Scikit-Optimize has a wrapper that implements gradient_x: https://github.com/scikit-optimize/scikit-optimize/blob/master/skopt/learning/gaussian_process/kernels.py#L68

It solves the problem.

from scikit-optimize.

alipsgh avatar alipsgh commented on June 11, 2024 1

@mahdiabdollahpour try

from skopt.learning.gaussian_process.kernels import RBF

instead of

from sklearn.gaussian_process.kernels import RBF

It seems that Scikit-Optimize has a wrapper that implements gradient_x: https://github.com/scikit-optimize/scikit-optimize/blob/master/skopt/learning/gaussian_process/kernels.py#L68

from scikit-optimize.

alipsgh avatar alipsgh commented on June 11, 2024 1

You may want to change the default Kernel from Matern to RBF (or any other) by editing the utils file: https://github.com/scikit-optimize/scikit-optimize/blob/master/skopt/utils.py#L380

if is_cat:
    other_kernel = HammingKernel(length_scale=np.ones(n_dims))
else:
    # other_kernel = Matern(
    #     length_scale=np.ones(n_dims),
    #     length_scale_bounds=[(0.01, 100)] * n_dims, nu=2.5)
    other_kernel = RBF(length_scale=np.ones(n_dims), length_scale_bounds=[(0.01, 100)] * n_dims)

from scikit-optimize.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.