Fixed missing verbose parameter passing (#97)

This commit is contained in:
Burak Demirbilek 2022-08-16 16:54:46 +03:00 committed by GitHub
parent eb48fec638
commit 049f5a16e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@ Bug Fixes:
- Fixed the issue of wrongly passing policy arguments when using CnnLstmPolicy or MultiInputLstmPolicy with ``RecurrentPPO`` (@mlodel)
- Fixed division by zero error when computing FPS when a small number of time has elapsed in operating systems with low-precision timers.
- Fixed calling child callbacks in MaskableEvalCallback (@CppMaster)
- Fixed missing verbose parameter passing in the ``MaskableEvalCallback`` constructor (@burakdmb)
Deprecations:
@ -297,4 +298,4 @@ Contributors:
-------------
@ku2482 @guyk1971 @minhlong94 @ayeright @kronion @glmcdona @cyprienc @sgillen @Gregwar @rnederstigt @qgallouedec
@mlodel @CppMaster
@mlodel @CppMaster @burakdmb

View File

@ -210,6 +210,7 @@ class MaskablePPO(OnPolicyAlgorithm):
eval_freq=eval_freq,
n_eval_episodes=n_eval_episodes,
use_masking=use_masking,
verbose=self.verbose,
)
callback = CallbackList([callback, eval_callback])