Neps state
The main state object that holds all the shared state objects.
This object is used to interact with the shared state objects in a safe atomic manner, such that each worker can create an identical NePSState and interact with it without having to worry about locking or out-dated information.
For an actual instantiation of this object, see
create_or_load_filebased_neps_state()
.
NePSState
dataclass
#
NePSState(
path: Path,
_trial_lock: FileLocker,
_trial_repo: TrialRepo,
_optimizer_lock: FileLocker,
_optimizer_info_path: Path,
_optimizer_info: OptimizerInfo,
_optimizer_state_path: Path,
_optimizer_state: OptimizationState,
_err_lock: FileLocker,
_shared_errors_path: Path,
_shared_errors: ErrDump,
)
The main state object that holds all the shared state objects.
all_trial_ids
#
create_or_load
classmethod
#
create_or_load(
path: Path,
*,
load_only: bool = False,
optimizer_info: OptimizerInfo | None = None,
optimizer_state: OptimizationState | None = None
) -> NePSState
Create a new NePSState in a directory or load the existing one if it already exists, depending on the argument.
Warning
We check that the optimizer info in the NePSState on disk matches the one that is passed. However we do not lock this check so it is possible that if two processes try to create a NePSState at the same time, both with different optimizer infos, that one will fail to create the NePSState. This is a limitation of the current design.
In principal, we could allow multiple optimizers to be run and share the same set of trials.
PARAMETER | DESCRIPTION |
---|---|
path
|
The directory to create the state in.
TYPE:
|
load_only
|
If True, only load the state and do not create a new one.
TYPE:
|
optimizer_info
|
The optimizer info to use.
TYPE:
|
optimizer_state
|
The optimizer state to use.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
NePSState
|
The NePSState. |
RAISES | DESCRIPTION |
---|---|
NePSError
|
If the optimizer info on disk does not match the one provided. |
Source code in neps/state/neps_state.py
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 |
|
lock_and_get_current_evaluating_trials
#
Get the current evaluating trials.
Source code in neps/state/neps_state.py
lock_and_get_errors
#
lock_and_get_errors() -> ErrDump
Get all the errors that have occurred during the optimization.
lock_and_get_next_pending_trial
#
lock_and_get_next_pending_trial() -> Trial | None
Get the next pending trial.
Source code in neps/state/neps_state.py
lock_and_get_optimizer_info
#
lock_and_get_optimizer_info() -> OptimizerInfo
lock_and_get_optimizer_state
#
lock_and_get_optimizer_state() -> OptimizationState
Get the optimizer state.
Source code in neps/state/neps_state.py
lock_and_get_trial_by_id
#
lock_and_read_trials
#
lock_and_report_trial_evaluation
#
Acquire the state lock and report the trial evaluation.
Source code in neps/state/neps_state.py
lock_and_sample_trial
#
lock_and_sample_trial(
optimizer: AskFunction,
*,
worker_id: str,
n: None = None
) -> Trial
lock_and_sample_trial(
optimizer: AskFunction, *, worker_id: str, n: int
) -> list[Trial]
lock_and_sample_trial(
optimizer: AskFunction,
*,
worker_id: str,
n: int | None = None
) -> Trial | list[Trial]
Acquire the state lock and sample a trial.
Source code in neps/state/neps_state.py
put_updated_trial
#
put_updated_trial(
trial: Trial,
*,
hints: (
list[TrialWriteHint] | TrialWriteHint | None
) = None
) -> None
Update the trial.
PARAMETER | DESCRIPTION |
---|---|
trial
|
The trial to update.
TYPE:
|
hints
|
The hints to use when updating the trial. Defines what files need
to be updated.
If you don't know, leave
TYPE:
|
Source code in neps/state/neps_state.py
unsafe_retry_get_trial_by_id
#
Get a trial by id but use unsafe retries.
Source code in neps/state/neps_state.py
TrialRepo
dataclass
#
TrialRepo(directory: Path)
A repository for trials that are stored on disk.
Warning
This class does not implement locking and it is up to the caller to ensure there are no race conflicts.
latest
#
Get the latest trials from the cache.
Source code in neps/state/neps_state.py
list_trial_ids
#
List all the trial ids on disk.
load_trial_from_disk
#
Load a trial from disk.
RAISES | DESCRIPTION |
---|---|
TrialNotFoundError
|
If the trial is not found on disk. |
Source code in neps/state/neps_state.py
store_new_trial
#
Write a new trial to disk.
RAISES | DESCRIPTION |
---|---|
TrialAlreadyExistsError
|
If the trial already exists on disk. |
Source code in neps/state/neps_state.py
update_trial
#
update_trial(
trial: Trial,
*,
hints: (
Iterable[TrialWriteHint] | TrialWriteHint | None
) = ("report", "metadata")
) -> None
Update a trial on disk.
PARAMETER | DESCRIPTION |
---|---|
trial
|
The trial to update.
TYPE:
|
hints
|
The hints to use when updating the trial. Defines what files need
to be updated.
If you don't know, leave
TYPE:
|