From 585d35338f96c7354af96f140674cfc6d5faf9ac Mon Sep 17 00:00:00 2001 From: SunilSamra Date: Tue, 11 Jul 2023 12:40:25 +0100 Subject: [PATCH] 1566 - updated docs for new items in training_config --- docs/source/config.rst | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/docs/source/config.rst b/docs/source/config.rst index a28f0ec1..af590a24 100644 --- a/docs/source/config.rst +++ b/docs/source/config.rst @@ -83,13 +83,24 @@ The environment config file consists of the following attributes: The other configurable item is ``flatten`` which is false by default. When set to true, the observation space is flattened (turned into a 1-D vector). You should use this if your RL agent does not natively support observation space types like ``gym.Spaces.Tuple``. -* **num_episodes** [int] +* **num_train_episodes** [int] - This defines the number of episodes that the agent will train or be evaluated over. + This defines the number of episodes that the agent will train for. -* **num_steps** [int] - Determines the number of steps to run in each episode of the session +* **num_train_steps** [int] + + Determines the number of steps to run in each episode of the training session. + + +* **num_eval_episodes** [int] + + This defines the number of episodes that the agent will be evaluated over. + + +* **num_eval_steps** [int] + + Determines the number of steps to run in each episode of the evaluation session. * **time_delay** [int]