About 158,000 results
Results near Columbus, Ohio ·
Open links in new tab
  1. Cart Pole - Gym Documentation

  2. Cartpole Game - jeffjar.me

    WEBThis is the classic inverted pendulum problem of control theory—also known as the cartpole problem of reinforcement learning (or "AI"). With a proper strategy, you can stabilize the cart indefinitely. The strategy can …

  3. gym/gym/envs/classic_control/cartpole.py at master

    WEBA pole is attached by an un-actuated joint to a cart, which moves along a frictionless track. The pendulum is placed upright on the cart and the goal is to balance the pole by applying forces in the left and right direction on …

  4. Cartpole: The “Hello World” of Reinforcement Learning

    WEBJun 25, 2020 · This environment contains a wheeled cart balancing a vertical pole. The pole is unstable and tends to fall over. The agent can move the cart in response to observations about the state of the pole, …

  5. Reinforcement Learning Concept on Cart-Pole with DQN

    WEBOct 6, 2019 · CartPole, also known as inverted pendulum, is a game in which you try to balance the pole as long as possible. It is assumed that at the tip of the pole, there is an object which makes it unstable and very …

  6. Balancing Cart Pole in Open AI Gym using Deep …

    WEBLearn how to balance a pole on a cart using deep reinforcement learning and Keras-RL. Follow the steps to set up the environment, implement the DQN agent, train and test the model, and save the best weights.

  7. CartPole v0 · openai/gym Wiki · GitHub

    WEBSep 29, 2021 · CartPole v0 is an environment where a pole is attached to a cart that moves along a track. The goal is to prevent the pole from falling over by changing the cart's velocity. Learn about the observation, …

  8. Deep Reinforcement Learning: Playing CartPole …

    WEBJul 31, 2018 · Learn how to train a model to play CartPole, a simple game where a pole balances on a cart, using Asynchronous Advantage Actor Critic (A3C) algorithm and tf.keras. Explore the concepts of eager …

  9. Optimal Control with OpenAI Gym - towardsdatascience.com

  10. Cart-Pole Balancing with Q-Learning | by Matthew …

    WEBNov 13, 2016 · The Cart-Pole world consists of a cart that moves along the horizontal axis and a pole that is anchored on the cart. At every time step, you can observe its position (x), velocity (x_dot),...