8 Haziran 2020 Pazartesi

Q LEARNING

import gym

env = gym.make("MountainCar-v0")
env.reset()

done = Falsewhile not done:
    action = 2  # always go right!    env.step(action)
    env.render()

Hiç yorum yok:

Yorum Gönder

Autonomous Drone Project (On going...)

In thıs project I planned to learn Drone technology and increasıng my Autonomous programming skills. I will work with Pixhawk's Library,...