Module border::agent[][src]

Agents of reinforcement learning.

In this crate, an agent is defined as an trainable policy. Currently, agents are implemented with tch-rs.

Re-exports

pub use base::OptInterval;
pub use base::OptIntervalCounter;
pub use base::CriticLoss;
pub use self::tch::replay_buffer::ReplayBuffer;
pub use self::tch::replay_buffer::TchBuffer;
pub use self::tch::dqn::DQN;

Modules

base

Utilities used by agents.

tch

Agents implemented based on tch-rs.