diff --git a/pyproject.toml b/pyproject.toml index 1586feb4..9691f65c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ requires-python = ">=3.8, <3.11" dynamic = ["version", "readme"] classifiers = [ "License :: OSI Approved :: MIT License", - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Operating System :: Microsoft :: Windows", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", diff --git a/src/primaite/agents/agent_abc.py b/src/primaite/agents/agent_abc.py index 48650139..c314fec3 100644 --- a/src/primaite/agents/agent_abc.py +++ b/src/primaite/agents/agent_abc.py @@ -25,7 +25,7 @@ def get_session_path(session_timestamp: datetime) -> Path: Get the directory path the session will output to. This is set in the format of: - ~/primaite/sessions//_. + ~/primaite/2.0.0rc2/sessions//_. :param session_timestamp: This is the datetime that the session started. :return: The session directory path. diff --git a/src/primaite/cli.py b/src/primaite/cli.py index bd0c8446..c3e173af 100644 --- a/src/primaite/cli.py +++ b/src/primaite/cli.py @@ -143,11 +143,11 @@ def session(tc: Optional[str] = None, ldc: Optional[str] = None, load: Optional[ tc: The training config filepath. Optional. If no value is passed then example default training config is used from: - ~/primaite/config/example_config/training/training_config_main.yaml. + ~/primaite/2.0.0rc2/config/example_config/training/training_config_main.yaml. ldc: The lay down config file path. Optional. If no value is passed then example default lay down config is used from: - ~/primaite/config/example_config/lay_down/lay_down_config_3_doc_very_basic.yaml. + ~/primaite/2.0.0rc2/config/example_config/lay_down/lay_down_config_3_doc_very_basic.yaml. load: The directory of a previous session. Optional. If no value is passed, then the session will use the default training config and laydown config. Inversely, if a training config and laydown config diff --git a/tests/test_seeding_and_deterministic_session.py b/tests/test_seeding_and_deterministic_session.py index 70ce229e..121a9808 100644 --- a/tests/test_seeding_and_deterministic_session.py +++ b/tests/test_seeding_and_deterministic_session.py @@ -50,7 +50,7 @@ def test_seeded_learning(temp_primaite_session): assert actual_mean_reward_per_episode == expected_mean_reward_per_episode -@pytest.mark.skip(reason="Inconsistent results. Needs someone with RL knowledge to investigate further.") +# @pytest.mark.skip(reason="Inconsistent results. Needs someone with RL knowledge to investigate further.") @pytest.mark.parametrize( "temp_primaite_session", [[TEST_CONFIG_ROOT / "ppo_seeded_training_config.yaml", dos_very_basic_config_path()]],