mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-07-28 20:11:31 +00:00
Fix statement that had no effects
This commit is contained in:
parent
0143518a99
commit
f0dba88275
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ class EvalCallback(EventCallback):
|
|||
self.best_model_save_path = best_model_save_path
|
||||
# Logs will be written in `evaluations.npz`
|
||||
if log_path is not None:
|
||||
os.path.join(log_path, 'evaluations')
|
||||
log_path = os.path.join(log_path, 'evaluations')
|
||||
self.log_path = log_path
|
||||
self.evaluations_results = []
|
||||
self.evaluations_timesteps = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue