Fix typo (#930)
* Fix typo * Fix train_freq documentation Seems to be a copy-paste error, train_freq has nothing to do with printing. * Fix documentation typo
This commit is contained in:
@@ -13,7 +13,7 @@ The functions in this file can are used to create the following functions:
|
|||||||
stochastic: bool
|
stochastic: bool
|
||||||
if set to False all the actions are always deterministic (default False)
|
if set to False all the actions are always deterministic (default False)
|
||||||
update_eps_ph: float
|
update_eps_ph: float
|
||||||
update epsilon a new value, if negative not update happens
|
update epsilon a new value, if negative no update happens
|
||||||
(default: no update)
|
(default: no update)
|
||||||
|
|
||||||
Returns
|
Returns
|
||||||
|
@@ -142,9 +142,8 @@ def learn(env,
|
|||||||
final value of random action probability
|
final value of random action probability
|
||||||
train_freq: int
|
train_freq: int
|
||||||
update the model every `train_freq` steps.
|
update the model every `train_freq` steps.
|
||||||
set to None to disable printing
|
|
||||||
batch_size: int
|
batch_size: int
|
||||||
size of a batched sampled from replay buffer for training
|
size of a batch sampled from replay buffer for training
|
||||||
print_freq: int
|
print_freq: int
|
||||||
how often to print out training progress
|
how often to print out training progress
|
||||||
set to None to disable printing
|
set to None to disable printing
|
||||||
|
Reference in New Issue
Block a user