by jointpdf on 12/27/20, 4:14 PM
by hfkldjsjfkdj on 12/27/20, 1:45 PM
When it comes to education online I prefer these, where they publish actual university course lectures and assignments than what you can find on Coursera and alike. There is still a big gap in the quality and depth.
by jsemrau on 12/27/20, 10:50 AM
That's one of these moments in life where you see tech and you know it will change the world, but don't see the problem yet.
by ilaksh on 12/27/20, 1:52 PM
I used to be a bit more excited about RL. I mean, it's still definitely something I have to learn, but one aspect of it _seems_ lacking to me and is messing with my motivation to learn it. I'm sure someone will happily explain all the ways I am ignorant.
It seems like there is a lot of emphasis on "direct RL" or whatever where they don't even really think about the model much, but it's I guess often inside of the policy or something?
But it seems to me as someone who has just started learning about robotics, that I absolutely need to first verify that I have an accurate model of the environment which I can inspect. It seems like a lot of RL approaches might not even be able to supply that.
I mean what I am stuck on as far as creating a robot (or virtual robot) is having a vision system that does all of the hard things I want. I feel like if I can detect edges and surfaces and shapes in 3D, parts of objects and objects, with orientation etc., and in a way I can display and manipulate it, that level of understanding will give me a firm base to build the rest of learning and planning on.
I know all of that is very hard. It seems like they must have tried that for awhile and then kind of gave up to head down the current direction of RL? Or just decided it wasn't important. I still think it's important.
by in3d on 12/27/20, 10:21 AM
I watched this course and David Silver is a great lecturer, better than anybody else I’ve seen actually. I hope he does more publicly viewable courses in the future.
by hideo7746 on 12/27/20, 3:24 PM
On one hand you're right, methods like Q-learning are model-free and do not necessarily encode much about state dynamics. The Q-function is a feature (function) of state and while ita may not say much about the model, it does encode the most important aspect of the model in terms of solving the task. Namely, it predicts the accumulated reward conditional on next actions actions. That makes it a somewhat narrow representation of state on its own. But, if you consider an environment that has many reward signals, and you learn Q functions for each, this ensemble of Q functions can consitute a rich representation of state. Depending on what the reward functions are, the associated Q functions may be sufficient to construct a full model. so I guess my point is that the learned quantities in RL encode key aspects of state, and when you expand beyond the single task/single reward RL setting the lines between value and model can become blurred.
by dgb23 on 12/27/20, 3:17 PM
Asking from a layman's perspective:
I've read a bit about genetic algorithms or evolutionary computation at some point. Apparently it achieves good results as it can find discrete solutions for complex, well defined problems.
Reinforcement learning is something I know even less about. But from what I gathered it is also most successful in well defined problems and systems (such as games).
So my question is: How do they relate? Is there overlap and what are the most significant conceptual differences?
by luplex on 12/27/20, 1:54 PM
I'm taking an adaptation of this class. My professor is simply reusing Silver's slides, so I'm watching the original lecture instead. Highly recommend!
by visarga on 12/27/20, 12:26 PM
Watched the course and it's great, probably the best intro to RL. Multiple watches needed as the subject is very deep.
by foobaw on 12/27/20, 10:24 AM
David Silver is awesome! Loved him in the Alpha Go documentary as well
by spicyramen on 12/27/20, 10:48 AM
Just watched his interview with Lex, inspiring engineer
by captn3m0 on 12/27/20, 1:18 PM
I did the course during my RC batch this year. Highly recommended if you're looking to learn RL.
by platz on 12/27/20, 4:00 PM
Hrm so are markov decision processes RL?