Update changelog and docs

This commit is contained in:
Marek Wolan
2024-03-04 18:59:03 +00:00
parent 2f456e7ae0
commit c3010ff816
2 changed files with 8 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed the order of service health state
- Fixed an issue where starting a node didn't start the services on it
- Added support for SQL INSERT command.
- Added ability to log each agent's action choices each step to a JSON file.

View File

@@ -19,6 +19,7 @@ This section configures how PrimAITE saves data during simulation and training.
# save_logs: True
# save_transactions: False
# save_tensorboard_logs: False
save_agent_actions: True
save_step_metadata: False
save_pcap_logs: False
save_sys_logs: False
@@ -65,6 +66,12 @@ Defines how often to save the policy during training.
*currently unused*.
``save_agent_actions``
Optional. Default value is ``True``.
If ``True``, this will create a JSON file each episode detailing every agent's action each step in that episode, formatted according to the CAOS format. This includes scripted, RL, and red agents.
``save_step_metadata``
----------------------