Skip to content

Commit

Permalink
Fixed missing verbose parameter passing (DLR-RM#1011)
Browse files Browse the repository at this point in the history
Co-authored-by: Quentin Gallouédec <[email protected]>
  • Loading branch information
BurakDmb and qgallouedec authored Aug 16, 2022
1 parent a30d360 commit 792e3bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/misc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Bug Fixes:
- Fixed the issue that ``predict`` does not always return action as ``np.ndarray`` (@qgallouedec)
- Fixed division by zero error when computing FPS when a small number of time has elapsed in operating systems with low-precision timers.
- Added multidimensional action space support (@qgallouedec)
- Fixed missing verbose parameter passing in the ``EvalCallback`` constructor (@burakdmb)

Deprecations:
^^^^^^^^^^^^^
Expand Down Expand Up @@ -1018,4 +1019,4 @@ And all the contributors:
@eleurent @ac-93 @cove9988 @theDebugger811 @hsuehch @Demetrio92 @thomasgubler @IperGiove @ScheiklP
@simoninithomas @armandpl @manuel-delverme @Gautam-J @gianlucadecola @buoyancy99 @caburu @xy9485
@Gregwar @ycheng517 @quantitative-technologies @bcollazo @git-thor @TibiGG @cool-RR @MWeltevrede
@Melanol @qgallouedec @francescoluciano @jlp-ue
@Melanol @qgallouedec @francescoluciano @jlp-ue @burakdmb
1 change: 1 addition & 0 deletions stable_baselines3/common/base_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,7 @@ def _init_callback(
log_path=log_path,
eval_freq=eval_freq,
n_eval_episodes=n_eval_episodes,
verbose=self.verbose,
)
callback = CallbackList([callback, eval_callback])

Expand Down

0 comments on commit 792e3bc

Please sign in to comment.