artificial intelligence
play

Artificial Intelligence: Methods and applications Lecture 5: Hybrid - PowerPoint PPT Presentation

Artificial Intelligence: Methods and applications Lecture 5: Hybrid robot architectures Ola Ringdahl Ume University November 18, 2014 Contents Hybrid (reactive/deliberative) paradigm Examples of different hybrid architectures


  1. Artificial Intelligence: Methods and applications Lecture 5: Hybrid robot architectures Ola Ringdahl Umeå University November 18, 2014

  2. Contents • Hybrid (reactive/deliberative) paradigm • Examples of different hybrid architectures • Robotic software frameworks (middleware) – ROS Artificial Intelligence: Methods and applications 2 Ola Ringdahl, Umeå University

  3. Deliberative paradigm • ca 1967 - ca 1990 • AI inspired • Represent every relevant aspect of the world explicitly • Interpret sensor data: make it a part of the world model • Use classical planning to decide what to do Artificial Intelligence: Methods and applications 3 Ola Ringdahl, Umeå University

  4. Deliberative paradigm Pro: • Hierarchical (top-down) structure allow for the planning module to focus all behaviors towards a single set of goals. Con: • Frame problem: Updating and maintaining a sufficiently detailed world model can be too computationally expensive. • Requires exact knowledge of the world • Closed world assumption: static world model cause poor performance in dynamic environments Artificial Intelligence: Methods and applications 4 Ola Ringdahl, Umeå University

  5. Reactive paradigm • ca 1988 - ca 1992 • A reaction to classical AI • Less knowledge representation and planning • More concrete responses to the environment • Decompose complex actions into behaviors Artificial Intelligence: Methods and applications 5 Ola Ringdahl, Umeå University

  6. Reactive paradigm Pro: • Short reaction times • Needs less computational resources • Easy to implement and expand • Emergent behavior • Open world assumption Con: • Difficult to design for emergent behaviors – No selection of behaviors • No planning • No monitoring of performance • No world representation (no internal map) Artificial Intelligence: Methods and applications 6 Ola Ringdahl, Umeå University

  7. Hybrid paradigm • Combines advantages of previous paradigms • How to reintroduce planning into the robot architectures without running into the problems that faced deliberative robots? – Use reactive functions for low level control – Use deliberation for higher level tasks deliberative reactive Artificial Intelligence: Methods and applications 7 Ola Ringdahl, Umeå University

  8. Combining deliberative and reactive functions • Deliberative: – Long time horizon – Global knowledge – Works with symbols • Reaction: – Short time horizon – No global knowledge – Works with sensors and actuators • Multi-tasking: – Deliberative and reactive functions execute in parallel Artificial Intelligence: Methods and applications 8 Ola Ringdahl, Umeå University

  9. What should the planning component do? • Manage behaviors – What is the current state of the world? – What is the goal state? – Which (combinations of / sequences of) behaviors will achieve the goal? • Monitor performance – Was the latest sub-plan successful? – Are sensors and actuators working properly? – Is the sensor data compatible with my view of the world? – If sensors are giving contradictory data, what to do? Artificial Intelligence: Methods and applications 9 Ola Ringdahl, Umeå University

  10. Common components Most hybrid architectures incorporate (variants of) the following components: • Mission planner – Interpret commands, create a high-level plan and divide it into subtasks • Sequencer – Given a subtask, generate a sequence of behaviors to solve it • Resource manager – Allocate resources to behaviors • Performance monitor – Determine if the robot is functioning properly and making progress towards the goals • Cartographer – Create, store, and maintain map information Artificial Intelligence: Methods and applications 10 Ola Ringdahl, Umeå University

  11. Architecture Styles • Managerial: Divide responsibility as in business (lower levels refine the plan, can ask for help from a higher level ( “ boss ” )) – AuRA : Autonomous Robot Architecture – SFX : Sensor Fusion Effects • State Hierarchies: Organize activities by scope of time knowledge. Three layers: past, present and future – 3T : 3-Tiered • Model-Oriented: Global world model serve as virtual sensors. Similar to the hierarchical paradigm – Saphira – TCA : Task Control Architecture Artificial Intelligence: Methods and applications 11 Ola Ringdahl, Umeå University

  12. Autonomous Robot Architecture (AuRA) • Suggested in the mid 1980s • Ronald C. Arkin • First hybrid architecture • Based on schema theory • Nested Hierarchical Controller • Potential fields for motor schemas Artificial Intelligence: Methods and applications 12 Ola Ringdahl, Umeå University

  13. AuRA architectural layout deliberative Mission planner Cartographer Navigator Homeostatic control Pilot reactive Motor schema manager Perception ms1 ms S1 S2 S2 ms ms2 Σ Actuators S3 S3 ms ms3 Sensors Artificial Intelligence: Methods and applications 13 Ola Ringdahl, Umeå University

  14. AuRA architectural layout Cartographer Mission planner deliberative Performance Monitoring Mission planner Cartographer Navigator Homeostatic control Pilot Sequencer reactive Motor schema manager Perception ms ms1 S1 S2 ms ms2 Σ Actuators S3 ms ms3 Resource manager Sensors Artificial Intelligence: Methods and applications 14 Ola Ringdahl, Umeå University

  15. Saphira • Ca 1997-onwards • A model-oriented architecture • Kurt Konolige et al. • SRI International • Used on Flakey and Erratic robots Motivation: • Coordination • Coherence • Communication Artificial Intelligence: Methods and applications 15 Ola Ringdahl, Umeå University

  16. Saphira Architecture Artificial Intelligence: Methods and 16 applications Ola Ringdahl, Umeå University

  17. Architecture from UMU • In the EU project CROPS we developed a new architecture – Goal of the project: harvest fruits with a manipulator • Uses a state machine instead of traditional planner • Implemented in ROS ( Robotic Operating System ) – A robotic framework/middleware similar to MRDS that you are using in Assignment 2 Artificial Intelligence: Methods and applications 17 Ola Ringdahl, Umeå University

  18. Robot architecture • The Main control program is Graphical Performance implemented as a State user monitor interface machine that runs the main loop • Each sub task is implemented as Behaviors • Computational behaviors Resource State Error derive information like fruit manager machine manager location • Acting behaviors control actuators (arm, gripper, cutter) • Each behavior is typically Sensors Virtual Behaviors Actuators implemented as a ROS node Sensors Fusion/ Learning Artificial Intelligence: Methods and 18 18 applications Ola Ringdahl, Umeå University

  19. Using the framework The developed framework may be used for several different applications. • Let's begin with a (simplified) flowchart for a fruit picking robot: Start Stop Yes Position Fruit All Initialize HW fruits platform in localization in Select fruit and SW front of target 3D picked? Yes No Transport to Move end Separate fruit Grasp fruit/ Out of container and effector reach? and stem peduncle No release fruit toward fruit Artificial Intelligence: Methods and applications 19 Ola Ringdahl, Umeå University

  20. State machine System ready Start Start auto Moving to home System not Out of Move_ ColdBoot Ready ready reach home Idle All fruits picked Home Fruit not in gripper Found fruit Fruit_to_ Basket Select_ Locate_ basket fruit fruits Transport fruit Fruit Goal No selected fruit Out of reach Pick_fruit Moving to fruit Artificial Intelligence: Methods and 20 applications Ola Ringdahl, Umeå University

  21. States versus behaviours • Each state is normally conected to a behaviour that does the actual job Manipulator node Move arm node Camera node Fruit localization node Range sensor node Artificial Intelligence: Methods and 21 applications Ola Ringdahl, Umeå University

  22. Local error handling • Detected and dealt with in the State machine Fruit not in gripper Fruit_to_ Basket Select_ basket fruit Transport fruit Fruit Goal selected Out of reach Pick_fruit Moving to fruit Artificial Intelligence: Methods and 22 applications Ola Ringdahl, Umeå University

  23. Error handling at system level Graphical • Errors are Performance user monitor interface detected by the Performance monitor and dealt with in the Error Resource State Error manager machine manager manager • Example: The camera stops Sensors Virtual Behaviors Actuators Sensors working Fusion/ Learning Artificial Intelligence: Methods and 23 applications Ola Ringdahl, Umeå University

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend