SlideShare ist ein Scribd-Unternehmen logo
1 von 21
Downloaden Sie, um offline zu lesen
Robot Swarms as Ensembles of
Cooperating Components
Matthias Hölzl
With contributions from Martin Wirsing, Annabelle Klarl
AWASS
Lucca, June 24, 2013
www.ascens-ist.eu
The Task
Robots cleaning an exhibition area
Matthias Hölzl 2
marXbot
Miniature mobile robot developed by EPFL
Rough-terrain mobility
Robots can dock to other robots
Many sensors
Proximity sensors
Gyroscope
3D accelerometer
RFID reader
Cameras
. . .
ARM-based Linux system
Gripper for picking up items
Matthias Hölzl 3
Swarm Robotics
Matthias Hölzl 4
Problems
Noise, sensor resolution
Extracting information from sensor data
Unforeseen situations
Uncertainty about the environment
Performing complex actions when intermediate
results are uncertain
. . .
Matthias Hölzl 5
Action Logics
Logics that can represent change over time
Probabilistic behavior can be modeled (but is cumbersome)
Matthias Hölzl 6
Markov Decision Processes
pos = (x,y)
pos = (x,y+1) pos = (x+1,y+1)
pos = (x + 1,y)
e / ...
s, n / ...
s / 0.9 / -0.1
e,w / 0.025 / -0.1
w / ...
s,n / ...
e / ...
s, n / ...
w/ ...
s,n / ...
n / 0.9 / -0.1
e, w / 0.025 / -0.1
s,n,w,e / 0.05 / -0.1
Matthias Hölzl 7
Markov Decision Processes
watchTV
goToClub
Decide
Activity
In Club
Watching
TV
Dancing
Alone
Drinking
Dancing
With
Partner
dance p = 0.5
dance p = 0.5
drinkBeer
Oh, oh
Oh, no
flirt
p = 0.05
p = 0.95
Matthias Hölzl 8
MDPs: Strategies
watchTV
goToClub
Decide
Activity
In Club
Watching
TV
Dancing
Alone
Drinking
Dancing
With
Partner
dance p = 0.5
dance p = 0.5
drinkBeer
Oh, oh
Oh, no
flirt
p = 0.05
p = 0.95
State TV CDB CDF
DA watchTV goToClub goToClub
IC drinkBeer drinkBeer dance
DWP flirt flirt flirt
Utility 0.1 −0.05(∗) −1.975(∗)
(∗) 0.05 + (−0.1)
(∗∗) 0.05 + (0.5 × 0.2) + 0.5 × (0.25 + (0.05 × 5) + (0.95 × −5))
Matthias Hölzl 9
Reinforcement Learning
General idea:
Figure out the expected
value of each action
in each state
Pick the action with
the highest expected
value (most of the
time)
Update the expectations
according to the actual
rewards
Matthias Hölzl 10
How well does this work?
Rather well for small problems
But: state explosion
Matthias Hölzl 11
Solutions
Decomposition
Hierarchy
Partial programs
Matthias Hölzl 12
POEM
Action language
First-order reasoning
Hierarchical reinforcement learning
Learns completions for partial programs
Concurrency
Reflection / meta-object protocols
· · ·
Matthias Hölzl 13
Iliad: A POEM Implementation
Common Lisp-based programming language
Full first-order reasoning
Operations on logical theories: U(C)NA, domain closure, . . .
Resolution, hyperresolution, DPLL, etc.
Conditional answer extraction
Procedural attachment, constraint solving
Hierarchical reinforcement learning
Based on Concurrent ALisp
Partial programs
Threadwise and temporal state abstraction
Hierarchically Optimal Yet Local (HOLY) Q-learning
Hierarchically Optimal Recursively Decomposed (HORD) Q-learning
Matthias Hölzl 14
Planned Contents
Introduction to CALisp/Poem
Simple TD-learning: bandits
Flat reinforcement learning: navigation
Hierarchical reinforcement learning:
collecting items individually
Threadwise decomposition for hierarchical
reinforcement learning: learning collaboratively
Matthias Hölzl 15
n-armed Bandits
S
search / 1.0 / N(0.1, 1.0)
coll-known / 1.0 / N(0.3, 3.0)
Choice between n actions
Reward depends probabilisticly on
the action choice
No long-term consequences
Simplest form of TD-learning
Matthias Hölzl 16
Flat Learning
XXXXXXXXXXXXXXXXXXXXXXXX Target: (0 0)
XXTT XX XX
XX XXXXXXXXXX XXXX Choices: (N E S W)
XXXXXX XX XX XX Q-values:
XX XX XXXXXXXX XX #((N (Q -1.8))
XX XXXXXX XX XX (E (Q -1.8))
XX XX XXXXXXXX (S (Q -2.25))
XXXXXXXXXX XX XX (W (Q 2.76)))
XX XX XXXX XX Recommended choice is W
XX XX XX XX XX XX
XX XX RR XX
XXXXXXXXXXXXXXXXXXXXXXXX
Matthias Hölzl 17
Flat Learning
(defun simple-robot ()
(call (nav (target-loc (robot-env)))))
(defun nav (loc)
(until (equal (robot-loc) loc)
(with-choice navigate-choice (dir ’(N E S W))
(action navigate-move dir))))
Matthias Hölzl 18
Hierarchical Learning
(defun waste-removal ()
(loop
(choose choose-waste-removal-action
(action sleep ’SLEEP)
(call (pickup-waste))
(call (drop-waste)))))
(defun pickup-waste ()
(call (nav (waste-source)))
(action pickup-waste ’PICKUP))
Matthias Hölzl 19
Multi-Robot Learning
XXXXXXXXXXXXXXXXXXXXXXXX
XXTT XX RR XX
XX XX XX
XXXXXX XX XX
XX XX RW RR XX
XX XX
XX RR WW XX
XX XX
XX RR XX
XX XX
XX XX
XXXXXXXXXXXXXXXXXXXXXXXX
Matthias Hölzl 20
Thank you!
Any Questions?
matthias.hoelzl@ifi.lmu.de
Matthias Hölzl 21

Weitere ähnliche Inhalte

Mehr von FET AWARE project - Self Awareness in Autonomic Systems

Mehr von FET AWARE project - Self Awareness in Autonomic Systems (20)

Academic Course: 02 Self-organization and emergence in networked systems
Academic Course: 02 Self-organization and emergence in networked systemsAcademic Course: 02 Self-organization and emergence in networked systems
Academic Course: 02 Self-organization and emergence in networked systems
 
Academic Course: 01 Self-awarenesss and Computational Self-awareness
Academic Course: 01 Self-awarenesss and Computational Self-awarenessAcademic Course: 01 Self-awarenesss and Computational Self-awareness
Academic Course: 01 Self-awarenesss and Computational Self-awareness
 
Awareness: Layman Seminar Slides
Awareness: Layman Seminar SlidesAwareness: Layman Seminar Slides
Awareness: Layman Seminar Slides
 
Industry Training: 04 Awareness Applications
Industry Training: 04 Awareness ApplicationsIndustry Training: 04 Awareness Applications
Industry Training: 04 Awareness Applications
 
Industry Training: 03 Awareness Simulation
Industry Training: 03 Awareness SimulationIndustry Training: 03 Awareness Simulation
Industry Training: 03 Awareness Simulation
 
Industry Training: 02 Awareness Properties
Industry Training: 02 Awareness PropertiesIndustry Training: 02 Awareness Properties
Industry Training: 02 Awareness Properties
 
Industry Training: 01 Awareness Overview
Industry Training: 01 Awareness OverviewIndustry Training: 01 Awareness Overview
Industry Training: 01 Awareness Overview
 
Towards Systematically Engineering Ensembles - Martin Wirsing
Towards Systematically Engineering Ensembles - Martin WirsingTowards Systematically Engineering Ensembles - Martin Wirsing
Towards Systematically Engineering Ensembles - Martin Wirsing
 
Capturing the Immune System: From the wet-­lab to the robot, building better ...
Capturing the Immune System: From the wet-­lab to the robot, building better ...Capturing the Immune System: From the wet-­lab to the robot, building better ...
Capturing the Immune System: From the wet-­lab to the robot, building better ...
 
Underwater search and rescue in swarm robotics - Mark Read
Underwater search and rescue in swarm robotics - Mark Read Underwater search and rescue in swarm robotics - Mark Read
Underwater search and rescue in swarm robotics - Mark Read
 
Computational Self-awareness in Smart-Camera Networks - Lukas Esterle
Computational Self-awareness in Smart-Camera Networks - Lukas EsterleComputational Self-awareness in Smart-Camera Networks - Lukas Esterle
Computational Self-awareness in Smart-Camera Networks - Lukas Esterle
 
Why Robots may need to be self-­‐aware, before we can really trust them - Ala...
Why Robots may need to be self-­‐aware, before we can really trust them - Ala...Why Robots may need to be self-­‐aware, before we can really trust them - Ala...
Why Robots may need to be self-­‐aware, before we can really trust them - Ala...
 
Morphogenetic Engineering: Reconciling Architecture and Self-Organization Thr...
Morphogenetic Engineering: Reconciling Architecture and Self-Organization Thr...Morphogenetic Engineering: Reconciling Architecture and Self-Organization Thr...
Morphogenetic Engineering: Reconciling Architecture and Self-Organization Thr...
 
Ensemble-oriented programming of self-adaptive systems - Michele Loreti
Ensemble-oriented programming of self-adaptive systems - Michele LoretiEnsemble-oriented programming of self-adaptive systems - Michele Loreti
Ensemble-oriented programming of self-adaptive systems - Michele Loreti
 
Self-awareness and Adaptive Technologies: the Future of Operating Systems?
Self-awareness and Adaptive Technologies: the Future of Operating Systems? Self-awareness and Adaptive Technologies: the Future of Operating Systems?
Self-awareness and Adaptive Technologies: the Future of Operating Systems?
 
EnhancingWeb Process Self-Awareness with Context-Aware Service Composition
EnhancingWeb Process Self-Awareness with Context-Aware Service CompositionEnhancingWeb Process Self-Awareness with Context-Aware Service Composition
EnhancingWeb Process Self-Awareness with Context-Aware Service Composition
 
Testing cooperative autonomous systems for unwanted emergent behaviour and da...
Testing cooperative autonomous systems for unwanted emergent behaviour and da...Testing cooperative autonomous systems for unwanted emergent behaviour and da...
Testing cooperative autonomous systems for unwanted emergent behaviour and da...
 
Enduring Institutions and Self-Organising Trust-Adaptive Systems for an Open ...
Enduring Institutions and Self-Organising Trust-Adaptive Systems for an Open ...Enduring Institutions and Self-Organising Trust-Adaptive Systems for an Open ...
Enduring Institutions and Self-Organising Trust-Adaptive Systems for an Open ...
 
SmartContent: A self protecting and context aware active content
SmartContent: A self protecting and context aware active contentSmartContent: A self protecting and context aware active content
SmartContent: A self protecting and context aware active content
 
Autonomic Systems Research
Autonomic Systems ResearchAutonomic Systems Research
Autonomic Systems Research
 

Kürzlich hochgeladen

The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 

Kürzlich hochgeladen (20)

The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 

Robot Swarms as Ensembles of Cooperating Components

  • 1. Robot Swarms as Ensembles of Cooperating Components Matthias Hölzl With contributions from Martin Wirsing, Annabelle Klarl AWASS Lucca, June 24, 2013 www.ascens-ist.eu
  • 2. The Task Robots cleaning an exhibition area Matthias Hölzl 2
  • 3. marXbot Miniature mobile robot developed by EPFL Rough-terrain mobility Robots can dock to other robots Many sensors Proximity sensors Gyroscope 3D accelerometer RFID reader Cameras . . . ARM-based Linux system Gripper for picking up items Matthias Hölzl 3
  • 5. Problems Noise, sensor resolution Extracting information from sensor data Unforeseen situations Uncertainty about the environment Performing complex actions when intermediate results are uncertain . . . Matthias Hölzl 5
  • 6. Action Logics Logics that can represent change over time Probabilistic behavior can be modeled (but is cumbersome) Matthias Hölzl 6
  • 7. Markov Decision Processes pos = (x,y) pos = (x,y+1) pos = (x+1,y+1) pos = (x + 1,y) e / ... s, n / ... s / 0.9 / -0.1 e,w / 0.025 / -0.1 w / ... s,n / ... e / ... s, n / ... w/ ... s,n / ... n / 0.9 / -0.1 e, w / 0.025 / -0.1 s,n,w,e / 0.05 / -0.1 Matthias Hölzl 7
  • 8. Markov Decision Processes watchTV goToClub Decide Activity In Club Watching TV Dancing Alone Drinking Dancing With Partner dance p = 0.5 dance p = 0.5 drinkBeer Oh, oh Oh, no flirt p = 0.05 p = 0.95 Matthias Hölzl 8
  • 9. MDPs: Strategies watchTV goToClub Decide Activity In Club Watching TV Dancing Alone Drinking Dancing With Partner dance p = 0.5 dance p = 0.5 drinkBeer Oh, oh Oh, no flirt p = 0.05 p = 0.95 State TV CDB CDF DA watchTV goToClub goToClub IC drinkBeer drinkBeer dance DWP flirt flirt flirt Utility 0.1 −0.05(∗) −1.975(∗) (∗) 0.05 + (−0.1) (∗∗) 0.05 + (0.5 × 0.2) + 0.5 × (0.25 + (0.05 × 5) + (0.95 × −5)) Matthias Hölzl 9
  • 10. Reinforcement Learning General idea: Figure out the expected value of each action in each state Pick the action with the highest expected value (most of the time) Update the expectations according to the actual rewards Matthias Hölzl 10
  • 11. How well does this work? Rather well for small problems But: state explosion Matthias Hölzl 11
  • 13. POEM Action language First-order reasoning Hierarchical reinforcement learning Learns completions for partial programs Concurrency Reflection / meta-object protocols · · · Matthias Hölzl 13
  • 14. Iliad: A POEM Implementation Common Lisp-based programming language Full first-order reasoning Operations on logical theories: U(C)NA, domain closure, . . . Resolution, hyperresolution, DPLL, etc. Conditional answer extraction Procedural attachment, constraint solving Hierarchical reinforcement learning Based on Concurrent ALisp Partial programs Threadwise and temporal state abstraction Hierarchically Optimal Yet Local (HOLY) Q-learning Hierarchically Optimal Recursively Decomposed (HORD) Q-learning Matthias Hölzl 14
  • 15. Planned Contents Introduction to CALisp/Poem Simple TD-learning: bandits Flat reinforcement learning: navigation Hierarchical reinforcement learning: collecting items individually Threadwise decomposition for hierarchical reinforcement learning: learning collaboratively Matthias Hölzl 15
  • 16. n-armed Bandits S search / 1.0 / N(0.1, 1.0) coll-known / 1.0 / N(0.3, 3.0) Choice between n actions Reward depends probabilisticly on the action choice No long-term consequences Simplest form of TD-learning Matthias Hölzl 16
  • 17. Flat Learning XXXXXXXXXXXXXXXXXXXXXXXX Target: (0 0) XXTT XX XX XX XXXXXXXXXX XXXX Choices: (N E S W) XXXXXX XX XX XX Q-values: XX XX XXXXXXXX XX #((N (Q -1.8)) XX XXXXXX XX XX (E (Q -1.8)) XX XX XXXXXXXX (S (Q -2.25)) XXXXXXXXXX XX XX (W (Q 2.76))) XX XX XXXX XX Recommended choice is W XX XX XX XX XX XX XX XX RR XX XXXXXXXXXXXXXXXXXXXXXXXX Matthias Hölzl 17
  • 18. Flat Learning (defun simple-robot () (call (nav (target-loc (robot-env))))) (defun nav (loc) (until (equal (robot-loc) loc) (with-choice navigate-choice (dir ’(N E S W)) (action navigate-move dir)))) Matthias Hölzl 18
  • 19. Hierarchical Learning (defun waste-removal () (loop (choose choose-waste-removal-action (action sleep ’SLEEP) (call (pickup-waste)) (call (drop-waste))))) (defun pickup-waste () (call (nav (waste-source))) (action pickup-waste ’PICKUP)) Matthias Hölzl 19
  • 20. Multi-Robot Learning XXXXXXXXXXXXXXXXXXXXXXXX XXTT XX RR XX XX XX XX XXXXXX XX XX XX XX RW RR XX XX XX XX RR WW XX XX XX XX RR XX XX XX XX XX XXXXXXXXXXXXXXXXXXXXXXXX Matthias Hölzl 20