File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ Others:
39
39
Documentation:
40
40
^^^^^^^^^^^^^^
41
41
- Renamed ``load_parameters `` to ``set_parameters `` (@DavyMorgan)
42
+ - Fixed typo in ``A2C `` docstring (@AlexPasqua)
42
43
43
44
44
45
Release 1.7.0 (2023-01-10)
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class A2C(OnPolicyAlgorithm):
29
29
:param n_steps: The number of steps to run for each environment per update
30
30
(i.e. batch size is n_steps * n_env where n_env is number of environment copies running in parallel)
31
31
:param gamma: Discount factor
32
- :param gae_lambda: Factor for trade-off of bias vs variance for Generalized Advantage Estimator
32
+ :param gae_lambda: Factor for trade-off of bias vs variance for Generalized Advantage Estimator.
33
33
Equivalent to classic advantage when set to 1.
34
34
:param ent_coef: Entropy coefficient for the loss calculation
35
35
:param vf_coef: Value function coefficient for the loss calculation
You can’t perform that action at this time.
0 commit comments