Default Artifact Paths for RL Examples #
TorchLean's runnable RL examples write small JSON artifacts to data/rl/ by default:
- training curves (
TrainLogJSON), - optional policy snapshots, and
- optional episode path snapshots.
The executable trainers and editor-side views under NN/Examples/Models/RL need to agree on these
defaults. Keeping the strings here gives both sides one shared path convention.
Users can always override these paths with the corresponding CLI flags (e.g. --log, --policy,
--path).
Default training-log path written by torchlean ppo_cartpole (override with --log).
Instances For
Default training-log path for the optional Pong RAM artifact viewer.
Instances For
Default training-log path written by torchlean ppo_gridworld (override with --log).
Instances For
Default policy snapshot path written by torchlean ppo_gridworld (override with --policy).
Instances For
Default episode-path snapshot path written by torchlean ppo_gridworld (override with --path).