Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up interface to for specifying seeds to optuna samplers with PEC. #2876

Open
wants to merge 6 commits into
base: devel
Choose a base branch
from

Commits on Jan 4, 2024

  1. Fix issue with seeding optuna samplers.

    Figured out a better way to reseed and already
    instatiated Optuna sampler. I was overwriting the
    RNG state in a hacky way before. I didn't realize there
    was a reseed_rng() method on the the base sampler class
    that can be called when the seed is re-initialized.
    davidt0x committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    981e6b4 View commit details
    Browse the repository at this point in the history
  2. Switch to QMCSampler instead of CMA-ES

    Test for CMA-ES sampler was actually just falling back
    to RandomSampler. I just want to test things work with
    another sampler so I switched to QMCSampler because it
    also supports 1D search spaces.
    davidt0x committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    86b7a11 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    871f960 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. Configuration menu
    Copy the full SHA
    848fe50 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Add warnings about seeding optuna.

    Added support for passing kwargs to un-instantiated
    optuna sampler.
    davidt0x committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    caaefc6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    54c3840 View commit details
    Browse the repository at this point in the history