Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Replay Buffers and Memory Loaders
Documentation
data BufferType Source #
Indicate Buffer Type to be used by Algorithm
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 (==) :: BufferType -> BufferType -> Bool # (/=) :: BufferType -> BufferType -> Bool # | |
Show BufferType Source # | |
Defined in RPB showsPrec :: Int -> BufferType -> ShowS # show :: BufferType -> String # showList :: [BufferType] -> ShowS # |