Skip to main content

RLTraining

Struct RLTraining 

Source
pub struct RLTraining<RLC: RLComponentsTypes> { /* private fields */ }
Available on crate feature rl only.
Expand description

Structure to configure and launch reinforcement learning trainings.

Implementations§

Source§

impl<B, E, EI, A> RLTraining<RLComponentsMarker<B, E, EI, A>>
where B: AutodiffBackend, E: Environment + 'static, EI: EnvironmentInit<E> + Send + 'static, A: PolicyLearner<B> + Send + 'static, A::TrainContext: ItemLazy + Clone + Send, A::InnerPolicy: Policy<B> + Send, <A::InnerPolicy as Policy<B>>::Observation: Batchable + Clone + Send, <A::InnerPolicy as Policy<B>>::ActionDistribution: Batchable + Clone + Send, <A::InnerPolicy as Policy<B>>::Action: Batchable + Clone + Send, <A::InnerPolicy as Policy<B>>::ActionContext: ItemLazy + Clone + Send + 'static, <A::InnerPolicy as Policy<B>>::PolicyState: Clone + Send, E::State: Into<<A::InnerPolicy as Policy<B>>::Observation> + Clone + Send + 'static, E::Action: From<<A::InnerPolicy as Policy<B>>::Action> + Into<<A::InnerPolicy as Policy<B>>::Action> + Clone + Send + 'static,

Source

pub fn new(directory: impl AsRef<Path>, env_initializer: EI) -> Self

Creates a new runner for reinforcement learning.

§Arguments
  • directory - The directory to save the checkpoints.
  • env_init - Specifies how to initialize the environment.
Source§

impl<RLC: RLComponentsTypes + 'static> RLTraining<RLC>

Source

pub fn with_learning_strategy( self, learning_strategy: RLStrategies<RLC>, ) -> Self

Replace the default learning strategy (Off Policy learning) with the provided one.

§Arguments
  • training_strategy - The training strategy.
Source

pub fn with_metric_logger<ML>(self, logger: ML) -> Self
where ML: MetricLogger + 'static,

Replace the default metric loggers with the provided ones.

§Arguments
  • logger - The training logger.
Source

pub fn with_checkpointing_strategy<CS: CheckpointingStrategy + 'static>( self, strategy: CS, ) -> Self

Update the checkpointing_strategy.

Source

pub fn renderer<MR>(self, renderer: MR) -> Self
where MR: MetricsRenderer + 'static,

Replace the default CLI renderer with a custom one.

§Arguments
  • renderer - The custom renderer.
Source

pub fn metrics_train<Me: TrainMetricRegistration<RLC>>( self, metrics: Me, ) -> Self

Register numerical metrics for a training step of the agent.

Source

pub fn text_metrics_train<Me: TrainTextMetricRegistration<RLC>>( self, metrics: Me, ) -> Self

Register textual metrics for a training step of the agent.

Source

pub fn metrics_agent<Me: AgentMetricRegistration<RLC>>( self, metrics: Me, ) -> Self

Register numerical metrics for each action of the agent.

Source

pub fn text_metrics_agent<Me: AgentTextMetricRegistration<RLC>>( self, metrics: Me, ) -> Self

Register textual metrics for each action of the agent.

Source

pub fn metrics_episode<Me: EpisodeMetricRegistration<RLC>>( self, metrics: Me, ) -> Self

Register numerical metrics for a completed episode.

Source

pub fn text_metrics_episode<Me: EpisodeTextMetricRegistration<RLC>>( self, metrics: Me, ) -> Self

Register textual metrics for a completed episode.

Source

pub fn text_metric_train<Me: Metric + 'static>(self, metric: Me) -> Self
where <RLC::TrainingOutput as ItemLazy>::ItemSync: Adaptor<Me::Input>,

Register a textual metric for a training step.

Source

pub fn metric_train<Me>(self, metric: Me) -> Self
where Me: Metric + Numeric + 'static, <RLC::TrainingOutput as ItemLazy>::ItemSync: Adaptor<Me::Input>,

Register a numeric metric for a training step.

Source

pub fn text_metric_agent<Me: Metric + 'static>(self, metric: Me) -> Self
where <RLC::ActionContext as ItemLazy>::ItemSync: Adaptor<Me::Input>,

Register a textual metric for each action taken by the agent.

Source

pub fn metric_agent<Me>(self, metric: Me) -> Self
where Me: Metric + Numeric + 'static, <RLC::ActionContext as ItemLazy>::ItemSync: Adaptor<Me::Input>,

Register a numeric metric for each action taken by the agent.

Source

pub fn text_metric_episode<Me: Metric + 'static>(self, metric: Me) -> Self
where EpisodeSummary: Adaptor<Me::Input> + 'static,

Register a textual metric for a completed episode.

Source

pub fn metric_episode<Me>(self, metric: Me) -> Self
where Me: Metric + Numeric + 'static, EpisodeSummary: Adaptor<Me::Input> + 'static,

Register a numeric metric for a completed episode.

Source

pub fn num_steps(self, num_steps: usize) -> Self

The number of environment steps to train for.

Source

pub fn checkpoint(self, checkpoint: usize) -> Self

The step from which the training must resume.

Source

pub fn interrupter(&self) -> Interrupter

Provides a handle that can be used to interrupt training.

Source

pub fn with_interrupter(self, interrupter: Interrupter) -> Self

Override the handle for stopping training with an externally provided handle

Source

pub fn with_application_logger( self, logger: Option<Box<dyn ApplicationLoggerInstaller>>, ) -> Self

By default, Rust logs are captured and written into experiment.log. If disabled, standard Rust log handling will apply.

Source

pub fn with_file_checkpointer<FR>(self, recorder: FR) -> Self
where FR: FileRecorder<RLC::Backend> + 'static + FileRecorder<<RLC::Backend as AutodiffBackend>::InnerBackend>,

Register a checkpointer that will save the environment runner’s policy and the PolicyLearner state to different files.

Source

pub fn summary(self) -> Self

Enable the training summary report.

The summary will be displayed after .launch(), when the renderer is dropped.

Source

pub fn launch(self, learner_agent: RLC::LearningAgent) -> RLResult<RLC::Policy>

Launch the training with the specified PolicyLearner on the specified environment.

Auto Trait Implementations§

§

impl<RLC> Freeze for RLTraining<RLC>
where <RLC as RLComponentsTypes>::EnvInit: Freeze,

§

impl<RLC> !RefUnwindSafe for RLTraining<RLC>

§

impl<RLC> !Send for RLTraining<RLC>

§

impl<RLC> !Sync for RLTraining<RLC>

§

impl<RLC> Unpin for RLTraining<RLC>
where <RLC as RLComponentsTypes>::EnvInit: Unpin,

§

impl<RLC> UnsafeUnpin for RLTraining<RLC>

§

impl<RLC> !UnwindSafe for RLTraining<RLC>

Blanket Implementations§

Source§

impl<T> Adaptor<()> for T

Source§

fn adapt(&self)

Adapt the type to be passed to a metric.
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.