Skip to content

Commit f3cd632

Browse files
committed
Fixed missing verbose parameter passing (DLR-RM#1006)
1 parent c4f54fc commit f3cd632

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
^^^^^^^^^^^^^
@@ -1017,4 +1018,4 @@ And all the contributors:
10171018
@eleurent @ac-93 @cove9988 @theDebugger811 @hsuehch @Demetrio92 @thomasgubler @IperGiove @ScheiklP
10181019
@simoninithomas @armandpl @manuel-delverme @Gautam-J @gianlucadecola @buoyancy99 @caburu @xy9485
10191020
@Gregwar @ycheng517 @quantitative-technologies @bcollazo @git-thor @TibiGG @cool-RR @MWeltevrede
1020-
@Melanol @qgallouedec @francescoluciano @jlp-ue
1021+
@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)