Trial
A trial is a configuration and it's associated data.
MetaData
dataclass
#
MetaData(
id: str,
location: str,
state: State,
previous_trial_id: str | None,
previous_trial_location: str | None,
sampling_worker_id: str,
time_sampled: float,
evaluating_worker_id: str | None = None,
evaluation_duration: float | None = None,
time_submitted: float | None = None,
time_started: float | None = None,
time_end: float | None = None,
)
Metadata for a trial.
NotReportedYetError
#
Bases: NePSError
Raised when trying to access a report that has not been reported yet.
Report
dataclass
#
Report(
objective_to_minimize: float | list[float] | None,
cost: float | None,
learning_curve: list[float] | list[list[float]] | None,
extra: Mapping[str, Any],
err: Exception | None,
tb: str | None,
reported_as: Literal["success", "failed", "crashed"],
evaluation_duration: float | None,
)
A failed report of the evaluation of a configuration.
Trial
dataclass
#
Trial(
State: ClassVar = State,
Report: ClassVar = Report,
MetaData: ClassVar = MetaData,
NotReportedYetError: ClassVar = NotReportedYetError,
config: Mapping[str, Any],
metadata: MetaData,
report: Report | None,
)
A trial is a configuration and it's associated data.
new
classmethod
#
new(
*,
trial_id: str,
config: Mapping[str, Any],
location: str,
previous_trial: str | None,
previous_trial_location: str | None,
time_sampled: float,
worker_id: int | str
) -> Self
Create a new trial object that was just sampled.
Source code in neps\state\trial.py
reset
#
Reset the trial to a pending state.
Source code in neps\state\trial.py
set_complete
#
set_complete(
*,
report_as: Literal["success", "failed", "crashed"],
time_end: float,
objective_to_minimize: float | list[float] | None,
cost: float | None,
learning_curve: list[float] | list[list[float]] | None,
err: Exception | None,
tb: str | None,
extra: dict[str, Any] | None,
evaluation_duration: float | None
) -> Report
Set the report for the trial.
Source code in neps\state\trial.py
set_corrupted
#
set_evaluating
#
Set the trial as in progress.