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 this project, I plan to learn drone technology and improve my autonomous programming skills. I will work with the Pixhawk framework/libra...