2

I know that reinforcement learning has been used to solve the inverted pendulum problem.

Can supervised learning be used to solve the inverted pendulum problem?

For example, there could be an interface (e.g. a joystick) with the cart-pole system, which the human can use to balance the pole and, at the same time, collect a dataset for supervised learning. Has this been done before?

nbro
  • 39,006
  • 12
  • 98
  • 176
  • 1
    Yes, you can do it, for example [this](https://arxiv.org/pdf/1805.11592.pdf) paper uses YouTube videos to learn how to play difficult game Montezuma's Revenge – Brale Nov 29 '19 at 08:45
  • You may also be interested in [this post](https://ai.stackexchange.com/q/14167/2444). – nbro Jan 16 '21 at 20:13

1 Answers1

1

Of course, you can, and yes this has been researched and done before. By using supervised learning, you give the machine some data, and it will try to figure the best way to analyze and predict the next movement in case of an inverted pendulum problem.

I found a complete paper for this problem: Neural network control of an inverted pendulum on a cart by Valeri Mladenov et al.

nbro
  • 39,006
  • 12
  • 98
  • 176
Coderio
  • 166
  • 4