| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
RPB
Description
Replay Buffers and Memory Loaders
Documentation
data BufferType Source #
Indicate Buffer Type to be used by Algorithm
Constructors
| RPB | Normal Replay Buffer (SAC, TD3) |
| PER | Prioritized Experience Replay (SAC) |
| MEM | PPO Style replay Memory (PPO) |
| ERE | Emphasizing Recent Experience (SAC) |
| HER | Hindsight Experience Replay (TD3) |
Instances
| Eq BufferType Source # | |
Defined in RPB | |
| Show BufferType Source # | |
Defined in RPB Methods showsPrec :: Int -> BufferType -> ShowS # show :: BufferType -> String # showList :: [BufferType] -> ShowS # | |