4 Common Bugs in Backward Chained Behavior Trees (BT intro part 6)

Поделиться
HTML-код
  • Опубликовано: 9 янв 2025

Комментарии • 16

  • @scottnortman
    @scottnortman 3 года назад +3

    These videos are great and very helpful; thank you for creating them!

  • @damianwysokinski3285
    @damianwysokinski3285 2 года назад

    Great tutorials, thank you :)

  • @parswarr
    @parswarr Месяц назад

    What is the software package you used for this video which has the virtual environment and the real-time BT in the sidebar?

    • @petterogren7535
      @petterogren7535  Месяц назад

      The virtual environment is the game engine Unity 3d. And the BT package used is Panda BT (the free version).

  • @abhishekarvind
    @abhishekarvind 11 месяцев назад

    Great Video! Is there an algorithmic or simple way to check these bugs for large behaviour trees?

  • @emirof
    @emirof 2 года назад +1

    Thank you for these videos! Are conditions rechecked in parallel to actions being performed? If "Free path to Goal exists" is true, the robot will Move to Goal, but how does it react if something comes in the way while Move to Goal is running?

    • @petterogren7535
      @petterogren7535  2 года назад +2

      Yes, conditions are checked all the time. That is what provides the reactivity. Thus if the object is no longer in the gripper (it was dropped), the robot will immediately stop to pick it up again. If "Free path to goal" returns failure (say a human blocked the path to goal), this subtree would return failure (as there is currently no actions for achieving "Free path to goal", but one could imagine having and action "Ask human to move out of the way" or something similar) and the next fallback would be executed, exploring if the robot could pay some other agent to perform the task (if such an agent is nearby). Having multiple ways of achieving a task gives robustness, but one must then make sure to avoid the "avoid restarting failed subtrees" problem, as discussed in the video.

  • @charg1nmalaz0r51
    @charg1nmalaz0r51 3 года назад +1

    So is backward chained behaviour tree just the concept used to structure the tree? Making it easier to plan out what tasks you need and how to arrange them?

    • @petterogren7535
      @petterogren7535  3 года назад +1

      Yes, exactly! You can think of it as a design principle.

    • @petterogren7535
      @petterogren7535  3 года назад

      See detailed description here: ruclips.net/video/dB7ZSz890cw/видео.html

  • @shindao6
    @shindao6 2 года назад

    Thanks for the tutorials. I want to ask if the demo you are showing in unity is open source and available to download

    • @petterogren7535
      @petterogren7535  2 года назад +1

      Hi Stan. Some of the stuff is from the Unity Asset Store, so I do not think I am allowed to share it.

  • @metaroonlabstech
    @metaroonlabstech Год назад

    Damn!