Coder Social home page Coder Social logo

Comments (2)

SimonBlanke avatar SimonBlanke commented on May 14, 2024

Hello David,

I am glad to see, that you are still using Hyperactive.

In the current version of v2.x Hyperactive cannot do an early stop. This feature will be implemented in v3.0 coming in a few weeks.

However, part of the current Hyperactive development is the separation of the optimization algorithms into a simpler api. It is called Gradient-Free-Optimizers and is basically Hyperactive-lite. It will be the optimization-back-end of Hyperactive in the future. But it can also be used by itself, without Hyperactive:
https://github.com/SimonBlanke/Gradient-Free-Optimizers

Your code would convert into the following with Gradient-Free-Optimizers:

import time
import numpy as np
from gradient_free_optimizers import BayesianOptimizer


def my_model(para):
    time.sleep(3)
    return 0.9

search_space = {"n_estimators": np.arange(10, 200, 10)}

c_time = time.time()
opt = BayesianOptimizer(search_space)
opt.search(my_model, n_iter=8, max_score=0.9)
diff_time = time.time() - c_time

print("\n Optimization time:", diff_time)

Gradient Free Optimizers is well tested and very easy to use, but it has a few restrictions compared to Hyperactive:

  • The search space must be numeric (numpy arrays)
  • No build-in multiprocessing
  • No access to optimizer-parameters at run time. (In Hyperactive 3.0)

To make the relationship between Hyperactive and Gradient Free Optimizers clear, I will add a section into the readme about the differences and purposes of both packages.

I hope I was able to help you. If you have additional questions or suggestions please let me know.

from hyperactive.

DavidFricker avatar DavidFricker commented on May 14, 2024

Hi Simon,

Thank you for your fast and in depth response!

I appreciate the work-around code you have provided - it is working great.
We will use Gradient Free Optimizers package and wait for hyperactive 3.x to be released, your approach makes a lot of sense :)

Thanks,
David

from hyperactive.

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.