I am wondering that what kind of real life problems could be modelled this way.
>> I am wondering that what kind of real life problems could be modelled this way. Driving a car? Making a taco? Working the checkout counter?
Human-level control through deep reinforcement learning
61–63 of 63 posts
Re: Human-level control through deep reinforcement learning
#62Earlier quoted context omitted.
>> I am wondering that what kind of real life problems could be modelled this way. Driving a car? Making a taco? Working the checkout counter?
So could you define an cost function for these activities?
Re: Human-level control through deep reinforcement learning
#63Earlier quoted context omitted.
|> This work bridges the divide between high-dimensional sensory inputs and actions, resulting in the first artificial agent that is capable of learning to excel at a diverse array of challenging tasks. |We've created a universal learning algorithm that can take a multitude of inputs and consistently respond correctly without having to re-define the model for each game or problem. Further along in the article, it tur…
> Further along in the article, it turns out it is actually a subset of games which don't involve long term planning strategies. Unfortunately I can't access the paper, and the ReadCube link seems to require Flash, but I'm assuming a "Q-network" is based on Q-learning. Q-learning is essentially a lookup table of states to actions, where we guess what state we're in from our observations and look up which action to pe…
In this way, information can flow back in time as the agent learns that some observation is predictive of reward, and then learns some observation is predictive of that observation, and so on until it connects the reward with some action K time steps ago. So long-term planning is definitely possible.
This does require that some relevant information be available at each intermediate time step to connect the actions with the ultimate reward. The nice thing about these Atari games is you can usually judge value just by what's immediately on the screen, and in this paper they only use the last three frames' worth of state. In a game requiring a memory for past sensory information (e.g. where information appears on the screen then disappears), this might not do so well, but that's more a matter of working memory than long-term planning, and a different Q-learning system could contain a working memory (e.g. if it was RNN-based).