Reinforcement learning is supervised learning on optimized data
bair.berkeley.edu
Reinforcement learning is supervised learning on optimized data
1–10 of 19 posts
Re: Reinforcement learning is supervised learning on optimized data
#2Re: Reinforcement learning is supervised learning on optimized data
#31. learning a policy that imitates your own behavior on prior experience, which is a trivial supervised learning problem
2. learning how to weight the importance of prior experiences (learning a data distribution), for which the authors have derived a lower bound
Given a pool of experience, this seems like a fantastic off-policy method to optimize arbitrary reward functions. The main shortcomings I see with this method is that it still does not lead to any significant insights into how to collect new data online, which is a major open problem in RL.
Re: Reinforcement learning is supervised learning on optimized data
#4Nice definition of “school”, which is the most efficient method to teach/learn we have.
Re: Reinforcement learning is supervised learning on optimized data
#5This seems like a HUGE insight! As I understand it, they show that RL can effectively be recast as two sub-problems: 1. learning a policy that imitates your own behavior on prior experience, which is a trivial supervised learning problem 2. learning how to weight the importance of prior experiences (learning a data distribution), for which the authors have derived a lower bound Given a pool of experience, this seems…
This is a blog post. It cites three of the authors' papers that each contain empirical results. The abstract of the first ends:
"We formally show that this iterated supervised learning procedure optimizes a bound on the RL objective, derive performance bounds of the learned policy, and empirically demonstrate improved goal-reaching performance and robustness over current RL algorithms in several benchmark tasks."
Re: Reinforcement learning is supervised learning on optimized data
#6Re: Reinforcement learning is supervised learning on optimized data
#7Re: Reinforcement learning is supervised learning on optimized data
#8Re: Reinforcement learning is supervised learning on optimized data
#9Re: Reinforcement learning is supervised learning on optimized data
#10This seems like a HUGE insight! As I understand it, they show that RL can effectively be recast as two sub-problems: 1. learning a policy that imitates your own behavior on prior experience, which is a trivial supervised learning problem 2. learning how to weight the importance of prior experiences (learning a data distribution), for which the authors have derived a lower bound Given a pool of experience, this seems…
> I'm also wondering why the authors didn't publish any experiments to show that it works... This is a blog post. It cites three of the authors' papers that each contain empirical results. The abstract of the first ends: "We formally show that this iterated supervised learning procedure optimizes a bound on the RL objective, derive performance bounds of the learned policy, and empirically demonstrate improved goal-re…
It's interesting that their choice of current algorithms includes PPO but not e.g. Deepmind's Rainbow agent that achieved state of the art performance on many measures: https://arxiv.org/abs/1710.02298