#2871 - Changelog and documentation updates, corrected changes in Data manipulation demo notebook

This commit is contained in:
Charlie Crane
2024-09-17 10:09:10 +01:00
parent cf9646a183
commit c8f6459af6
3 changed files with 3 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Log observation space data by episode and step.
- Added `show_history` method to Agents, allowing you to view actions taken by an agent per step. By default, `DONOTHING` actions are omitted.
### Changed
- ACL's are no longer applied to layer-2 traffic.

View File

@@ -177,3 +177,4 @@ If ``True``, gymnasium flattening will be performed on the observation space bef
-----------------
Agents will record their action log for each step. This is a summary of what the agent did, along with response information from requests within the simulation.
A log of the actions taken by the agent can be viewed using the `show_history()` function. By default, this will display all actions taken apart from ``DONOTHING``.

View File

@@ -681,7 +681,7 @@
"metadata": {},
"outputs": [],
"source": [
"env.game.agents[\"data_manipulation_attacker\"].show_history(ignored_actions=[\"\"])"
"env.game.agents[\"data_manipulation_attacker\"].show_history()"
]
},
{