File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Bug Fixes:
20
20
- Fixed the issue that ``predict `` does not always return action as ``np.ndarray `` (@qgallouedec)
21
21
- Fixed division by zero error when computing FPS when a small number of time has elapsed in operating systems with low-precision timers.
22
22
- Added multidimensional action space support (@qgallouedec)
23
+ - Fixed missing verbose parameter passing in the ``EvalCallback `` constructor (@burakdmb)
23
24
24
25
Deprecations:
25
26
^^^^^^^^^^^^^
@@ -1018,4 +1019,4 @@ And all the contributors:
1018
1019
@eleurent @ac-93 @cove9988 @theDebugger811 @hsuehch @Demetrio92 @thomasgubler @IperGiove @ScheiklP
1019
1020
@simoninithomas @armandpl @manuel-delverme @Gautam-J @gianlucadecola @buoyancy99 @caburu @xy9485
1020
1021
@Gregwar @ycheng517 @quantitative-technologies @bcollazo @git-thor @TibiGG @cool-RR @MWeltevrede
1021
- @Melanol @qgallouedec @francescoluciano @jlp-ue
1022
+ @Melanol @qgallouedec @francescoluciano @jlp-ue @burakdmb
Original file line number Diff line number Diff line change @@ -392,6 +392,7 @@ def _init_callback(
392
392
log_path = log_path ,
393
393
eval_freq = eval_freq ,
394
394
n_eval_episodes = n_eval_episodes ,
395
+ verbose = self .verbose ,
395
396
)
396
397
callback = CallbackList ([callback , eval_callback ])
397
398
You can’t perform that action at this time.
0 commit comments