Filebased
Contains reading and writing of various aspects of NePS.
FileLocker
dataclass
#
File-based locker using portalocker
.
lock
#
Lock the file.
PARAMETER | DESCRIPTION |
---|---|
worker_id
|
The id of the worker trying to acquire the lock. Used for debug messaging purposes.
TYPE:
|
Source code in neps/state/filebased.py
ReaderWriterErrDump
dataclass
#
ReaderWriterTrial
dataclass
#
ReaderWriter for Trial objects.
read
classmethod
#
Read a trial from a directory.
Source code in neps/state/filebased.py
write
classmethod
#
write(
trial: Trial,
directory: Path,
*,
hints: (
Iterable[TrialWriteHint] | TrialWriteHint | None
) = None
) -> None
Write a trial to a directory.
PARAMETER | DESCRIPTION |
---|---|
trial
|
The trial to write.
TYPE:
|
directory
|
The directory to write the trial to.
TYPE:
|
hints
|
What to write. If None, write everything.
TYPE:
|