0 votes
by
What type of Neural Networks do Deep Reinforcement Learning use?

1 Answer

0 votes
by

Reinforcement learning is a type of machine learning paradigm where the model take action to maximize the notion of cumulative reward much like living beings do.

Learning how to play games, and self-driving cars are all modeled as a reinforcement learning problem.

If the problem to be modeled is a game, then the screen is taken as input. The algorithm takes the pixels as input and passes it through multiple layers of convolutional neural networks to give an output for the next steps to take. The outcome of the steps taken by the model serves as the positive or negative reinforcement.

Having Machine Learning, Data Science or Python Interview? Check 👉 54 Reinforcement Learning Interview Questions

...