Shortcuts

Source code for openrl.utils.callbacks.checkpoint_callback

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2023 The OpenRL Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

""""""
import os
from pathlib import Path
from typing import Union

from openrl.utils.callbacks.callbacks import BaseCallback


[docs]class CheckpointCallback(BaseCallback): """ Callback for saving a model every ``save_freq`` calls to ``env.step()``. By default, it only saves model checkpoints, you need to pass ``save_replay_buffer=True`` to save replay buffer checkpoints. .. warning:: When using multiple environments, each call to ``env.step()`` will effectively correspond to ``n_envs`` steps. To account for that, you can use ``save_freq = max(save_freq // n_envs, 1)`` :param save_freq: Save checkpoints every ``save_freq`` call of the callback. :param save_path: Path to the folder where the model will be saved. :param name_prefix: Common prefix to the saved models :param save_replay_buffer: Save the model replay buffer :param verbose: Verbosity level: 0 for no output, 2 for indicating when saving model checkpoint """ def __init__( self, save_freq: int, save_path: Union[str, Path], name_prefix: str = "rl_model", save_replay_buffer: bool = False, verbose: int = 0, ): super().__init__(verbose) self.save_freq = save_freq self.save_path = save_path self.name_prefix = name_prefix self.save_replay_buffer = save_replay_buffer def _init_callback(self) -> None: # Create folder if needed if self.save_path is not None: os.makedirs(self.save_path, exist_ok=True) def _checkpoint_path(self, checkpoint_type: str = "", extension: str = "") -> str: """ Helper to get checkpoint path for each type of checkpoint. :param checkpoint_type: empty for the model, "replay_buffer_" for the other checkpoints. :param extension: Checkpoint file extension (zip for model, pkl for others) :return: Path to the checkpoint """ return os.path.join( self.save_path, f"{self.name_prefix}_{checkpoint_type}{self.num_time_steps}_steps{'.' if extension else ''}{extension}", ) def _on_step(self) -> bool: if self.n_calls % self.save_freq == 0: model_path = self._checkpoint_path() self.agent.save(model_path) if self.verbose >= 2: print(f"Saving model checkpoint to {model_path}") if ( # TODO: add buffer save support self.save_replay_buffer and hasattr(self.agent, "replay_buffer") and self.agent.replay_buffer is not None ): # If model has a replay buffer, save it too replay_buffer_path = self._checkpoint_path( "replay_buffer_", extension="pkl" ) self.agent.save_replay_buffer(replay_buffer_path) if self.verbose > 1: print( f"Saving model replay buffer checkpoint to {replay_buffer_path}" ) return True