Which library in R allows to do interactive temporal (depending on sequence of events) learning? I need to perform a task similar to game playing as shown in this example:
http://cs.stanford.edu/people/karpathy/convnetjs/demo/rldemo.html
Which library in R allows to do interactive temporal (depending on sequence of events) learning? I need to perform a task similar to game playing as shown in this example:
http://cs.stanford.edu/people/karpathy/convnetjs/demo/rldemo.html
The correct term you are looking for is "Online Reinforcement Learning" (instead of Interactive). The temporal aspect is implicitly present in nearly each RL problem, hence not mentioned explicitly.
Due to the fact that multiple subdomains have been connected here, I guess that there is no single R package providing all the functionality. The problem solved by Mnih et. al. in Playing Atari with Deep Reinforcement Learning can be broken in multiple pieces.
If you are not restricted to R you may find pointers in the other attempts to reproduce the results from the paper
Weakly linked Question: R libraries for deep learning