Skip to content

Commit 792e3bc

Browse files
Fixed missing verbose parameter passing (#1011)
Co-authored-by: Quentin Gallouédec <[email protected]>
1 parent a30d360 commit 792e3bc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/misc/changelog.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Bug Fixes:
2020
- Fixed the issue that ``predict`` does not always return action as ``np.ndarray`` (@qgallouedec)
2121
- Fixed division by zero error when computing FPS when a small number of time has elapsed in operating systems with low-precision timers.
2222
- Added multidimensional action space support (@qgallouedec)
23+
- Fixed missing verbose parameter passing in the ``EvalCallback`` constructor (@burakdmb)
2324

2425
Deprecations:
2526
^^^^^^^^^^^^^
@@ -1018,4 +1019,4 @@ And all the contributors:
10181019
@eleurent @ac-93 @cove9988 @theDebugger811 @hsuehch @Demetrio92 @thomasgubler @IperGiove @ScheiklP
10191020
@simoninithomas @armandpl @manuel-delverme @Gautam-J @gianlucadecola @buoyancy99 @caburu @xy9485
10201021
@Gregwar @ycheng517 @quantitative-technologies @bcollazo @git-thor @TibiGG @cool-RR @MWeltevrede
1021-
@Melanol @qgallouedec @francescoluciano @jlp-ue
1022+
@Melanol @qgallouedec @francescoluciano @jlp-ue @burakdmb

stable_baselines3/common/base_class.py

+1
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ def _init_callback(
392392
log_path=log_path,
393393
eval_freq=eval_freq,
394394
n_eval_episodes=n_eval_episodes,
395+
verbose=self.verbose,
395396
)
396397
callback = CallbackList([callback, eval_callback])
397398

0 commit comments

Comments
 (0)