Control of a Quadrotor with Reinforcement Learning

Поділитися
Вставка
  • Опубліковано 14 лип 2024
  • In this video, we demonstrate a method to control a quadrotor with a neural network trained using reinforcement learning techniques. With reinforcement learning, a common network can be trained to directly map state to actuator command making any predefined control structure obsolete for training.
    More detail regarding the paper can be found from arxiv.org/abs/1707.05110
    and implementation is available from bitbucket.org/leggedrobotics/rai
  • Наука та технологія

КОМЕНТАРІ • 38

  • @praveengudhi2247
    @praveengudhi2247 7 років тому +2

    You guys are amazing, thank you for showing the direction

  • @trancongnguyen1252
    @trancongnguyen1252 4 роки тому +1

    Thank you very much, that is really awesome to see

  • @pratikprajapati8620
    @pratikprajapati8620 4 роки тому

    This is great indeed

  • @rooster443
    @rooster443 6 років тому +1

    mY GOSH!

  • @niharranjanpradhan169
    @niharranjanpradhan169 6 років тому +15

    Sir!
    Which simulator have u used for training?

  • @Edin12n
    @Edin12n 4 роки тому +2

    Hello, What a great video. I'm new to the subject of Reinforced Learning and hoped I could ask a question. Here goes: Does the ability of the drone to recover depend on input from the various sensors e.g. gyro. So say the drone flew from shade to sunlight, would there need to be a temperature sensor on board to allow it to cope with any sudden movement associated with moving from hot to cold. Or does the reinforced learning model not care about any of that and just learn to deal with whatever it encounters (so you could throw away the temperature sensor) and it would stabilize just fine with any sudden movement associated with hot to cold. Thanks

  • @ebert7955
    @ebert7955 5 років тому

    Random question here: I'm doing something similar using PPO on a quadrotor (simple simulation using OpenAI gym). I'm trying to get the cable suspended load case now, but still struggling with the reward function. Terminal states are way more difficult to handle than the standard quad.

  • @Inviaz
    @Inviaz 5 років тому +2

    These 4 PWM actions can be perform at the same time in one iteration loop?

  • @yuanyema5578
    @yuanyema5578 5 років тому +1

    The performance of the quadrotor is excellent.
    But i have a question about the reinforcement learning. I want to know what a role the RL algorithm play in the control system? navigation or attitude control?
    RL algorithm just provide where to move, and PID controler to finish attitude control? Or both attitude control and location control are all RL algorithm`s duty?
    Thanks for your response.

  • @kuan-holao4561
    @kuan-holao4561 6 років тому +2

    Cool work! I just completed a similar project, but I used DDPG with SNNs, nice to see implementation on real quadcopter, have you tried different tasks?

    • @muhammadharis-nr8yn
      @muhammadharis-nr8yn 3 роки тому +1

      can you tell me how did you simulate your project. can you provide me the simulation code and model in matlab?

  • @cypreessDK
    @cypreessDK 6 років тому +1

    What simulation engine did you used? Was that Unity? How did you dealed with reality-gap - what was your approach here. Did the copter flight on policy trained only in simulation?

    • @InkyuSa
      @InkyuSa 6 років тому

      Please have a look our repo and corresponding paper mentioned in the video description. A short answer for "Did the copter flight on policy trained only in simulation?" is yes, simulation only. Thanks for your interests.

  • @manukyananush88
    @manukyananush88 6 років тому +2

    I've read the paper however I could not understand how do you define the 4 actions? Each action is each rotor's velocity, right? But then how do they choose the velocity in the beginning?

    • @emmanuelezenwere
      @emmanuelezenwere 5 років тому

      Hello Anush. Have you made any progress with implementing the models from the paper?

    • @niharranjanpradhan169
      @niharranjanpradhan169 5 років тому

      As explained in the paper , there are two networks, one of them is a policy network. The policy network gives the PWM or rpm needed for each motor.

  • @yugalsharma13
    @yugalsharma13 2 роки тому

    Amazing work! How did you guys handle the noise in sensors (Gyro/Accelerometer) ?

    • @harshavardhankulkarni6599
      @harshavardhankulkarni6599 2 роки тому +1

      kalman filtering based techniques are used to achieve this i guess...also as far as the localization problem is concerned, the drone has reflective markers so im assuming a camera capturing mechanism is present for 3d localization.

    • @yugalsharma13
      @yugalsharma13 2 роки тому

      @@harshavardhankulkarni6599 yep! Makes sense

  • @srinathtangudu4899
    @srinathtangudu4899 4 роки тому +3

    what drone did you use? i planning to buy a drone for my research to do similar things. can some suggest me a drone

  • @ahmed.ea.abdalla
    @ahmed.ea.abdalla 7 років тому +1

    This looks amazing!
    I have experience with ROS and tensorflow (very basic). I'm highly interested in applying your findings to a quadcopter I'm working on.
    Can you please point me in the right direction?
    What can I start with and what must I learn?
    Thanks!

    • @jeminhwangbo7393
      @jeminhwangbo7393 7 років тому +2

      If you are starting from scratch, start with David Silver's lectures on youtube. Then download RLLAB and try simple learning tasks by yourself. You also have to read the papers related to the algorithms they implemented.

    • @ahmed.ea.abdalla
      @ahmed.ea.abdalla 7 років тому

      Jemin Hwangbo thanks!

  • @kid-vf4lu
    @kid-vf4lu 7 років тому

    Good job guys. Can you share details of the platform you're using - is the machine learn platform tensorflow/python-based, and is the quadrotor system running on ROS?

    • @jeminhwangbo7393
      @jeminhwangbo7393 7 років тому +6

      We use Tensorflow and a custom quadrotor simulator. During experiments, we compute the MLP using Eigen library and the rest of the software is on ROS. We will share the code as soon as the paper is accepted ;)

    • @kid-vf4lu
      @kid-vf4lu 7 років тому

      Jemin Hwangbo
      Awesome, I'm looking forward to your paper

    • @yashgoel976
      @yashgoel976 6 років тому +1

      Jemin Hwangbo can you please tell me more about the quadcopter simulator? How you customized it and what did you use basically?
      Thanks :)

    • @tytorobotics
      @tytorobotics 6 років тому

      Any updates on the code you are using? Is latency from the computer to the ESC output command a problem?

    • @jeminhwangbo7393
      @jeminhwangbo7393 6 років тому +1

      I built my own simulator for speed. It's basically the Newton-Euler equation without any air drag and gyroscopic effect. Probably the simplest simulator you can imagine. I opensourced the code so anyone with c++ skills can use it. I do not know much about the latency from the computer to the ESC. It seems like it was not a problem for me

  • @arthurmaffre1454
    @arthurmaffre1454 4 роки тому

    Hello good job, excuse me I'm a beginner and I don't understand why the value network is essential for learning. With only one value of distance between the quad and the point this could not be enough.

  • @kimjunyeong8701
    @kimjunyeong8701 Рік тому

    what kind of drone do you use?

    • @medhyvinceslas4151
      @medhyvinceslas4151 Рік тому

      Hummingbird quadrotor from Ascending Technologies! it is written in section 5 of their paper.

  • @loop8836
    @loop8836 3 роки тому

    where is fucking source code