Skip to content

Simple


Air Force Research Laboratory (AFRL) Autonomous Capabilities Team (ACT3) Reinforcement Learning (RL) Core.

This is a US Government Work not subject to copyright protection in the US.

The use, dissemination or disclosure of data in this file is subject to limitation or restriction. See accompanying README and LICENSE for details.


SimpleParameterProvider (EpisodeParameterProvider) ยค

EpisodeParameterProvider that does nothing but return the default.

Source code in corl/episode_parameter_providers/simple.py
class SimpleParameterProvider(EpisodeParameterProvider):
    """EpisodeParameterProvider that does nothing but return the default."""

    def _do_get_params(self, rng: Randomness) -> typing.Tuple[ParameterModel, typing.Union[int, None]]:
        return self.config.parameters, None