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
KeepBestN
Keep only the best N checkpoints.
public int KeepBestN { get; set; }
Property Value
SaveEveryEpisodes
Save checkpoint every N episodes.
public int SaveEveryEpisodes { get; set; }
Property Value
SaveOnBestReward
Save checkpoint on best reward improvement.
public bool SaveOnBestReward { get; set; }