* 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:
Timo Kaufmann
2019-08-06 01:02:21 +02:00
committed by pzhokhov
parent fce4370ba2
commit 7cadef715f
2 changed files with 2 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ The functions in this file can are used to create the following functions:
stochastic: bool
if set to False all the actions are always deterministic (default False)
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)
Returns

View File

@@ -142,9 +142,8 @@ def learn(env,
final value of random action probability
train_freq: int
update the model every `train_freq` steps.
set to None to disable printing
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
how often to print out training progress
set to None to disable printing