Table of Contents

Class RLCheckpointConfig

Namespace
AiDotNet.Configuration
Assembly
AiDotNet.dll

Configuration for checkpointing during RL training.

public class RLCheckpointConfig
Inheritance
RLCheckpointConfig
Inherited Members

Properties

CheckpointDirectory

Directory to save checkpoints.

public string CheckpointDirectory { get; set; }

Property Value

string

KeepBestN

Keep only the best N checkpoints.

public int KeepBestN { get; set; }

Property Value

int

SaveEveryEpisodes

Save checkpoint every N episodes.

public int SaveEveryEpisodes { get; set; }

Property Value

int

SaveOnBestReward

Save checkpoint on best reward improvement.

public bool SaveOnBestReward { get; set; }

Property Value

bool