From 19dbeebf0dc1609ff1db20a1e86819aeff1a8bfb Mon Sep 17 00:00:00 2001 From: carschandler <92899389+carschandler@users.noreply.github.com> Date: Sat, 9 Nov 2024 15:44:17 -0600 Subject: [PATCH] [Doc] Typo in docs for actors.py (#2545) --- torchrl/modules/tensordict_module/actors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/torchrl/modules/tensordict_module/actors.py b/torchrl/modules/tensordict_module/actors.py index 003c35cf0eb..bf945e609cb 100644 --- a/torchrl/modules/tensordict_module/actors.py +++ b/torchrl/modules/tensordict_module/actors.py @@ -1356,9 +1356,9 @@ class ActorValueOperator(SafeSequential): +-------------+ +------------+ .. note:: - For a similar class that returns an action and a Quality value :math:`Q(s, a)` - see :class:`~.ActorCriticOperator`. For a version without common embeddig - refet to :class:`~.ActorCriticWrapper`. + For a similar class that returns an action and a Quality value :math:`Q(s, a)`, + see :class:`~.ActorCriticOperator`. For a version without common embedding, + refer to :class:`~.ActorCriticWrapper`. To facilitate the workflow, this class comes with a get_policy_operator() and get_value_operator() methods, which will both return a standalone TDModule with the dedicated functionality.