- Added test_seeded_learning test and test_deterministic_evaluation test. - Passed config values seed and deterministic to ppo agent - Dropped deterministic override in evaluate functions - TempPrimaiteSession now writes files to a UUID folder rather than datetime - Added seed to Ray RLlib agent setup in rllib.py - Added seed to SB3 agent setup in sb3.py
22 lines
649 B
Python
22 lines
649 B
Python
import tempfile
|
|
from datetime import datetime
|
|
from pathlib import Path
|
|
from uuid import uuid4
|
|
|
|
from primaite import getLogger
|
|
|
|
_LOGGER = getLogger(__name__)
|
|
|
|
|
|
def get_temp_session_path(session_timestamp: datetime) -> Path:
|
|
"""
|
|
Get a temp directory session path the test session will output to.
|
|
|
|
:param session_timestamp: This is the datetime that the session started.
|
|
:return: The session directory path.
|
|
"""
|
|
session_path = Path(tempfile.gettempdir()) / "primaite" / str(uuid4())
|
|
session_path.mkdir(exist_ok=True, parents=True)
|
|
_LOGGER.debug(f"Created temp session directory: {session_path}")
|
|
return session_path
|