Kjell-K / AirGym

AirSim with openAI gym and keras-rl integration for autonomous copter RL
MIT License
104 stars 27 forks source link

How to convert this to a continuous action space? #1

Open Shreeyak opened 6 years ago

Shreeyak commented 6 years ago

Impressive work! I was wondering, what would it take to convert this to continuous? Break the time step down to the fps and make a decision every frame on what force to apply in which axis and direction? Is this doable with DQN?

Kjell-K commented 6 years ago

Sorry for the late answer, I had strange notification settings.

Also extending our agents to continuous action spaces is straightforward by applying the same changes which the continuous-action version of DQN applies to the original algorithm. The result is DDPG and is already implemented in keras-rl.

So you have to change the action space in AirGym environment and use keras-rl's DDPG.