cs 287 lecture 20 fall 2019 model based rl
play

CS 287 Lecture 20 (Fall 2019) Model-based RL Pieter Abbeel UC - PowerPoint PPT Presentation

CS 287 Lecture 20 (Fall 2019) Model-based RL Pieter Abbeel UC Berkeley EECS Outline n Model-based RL n Ensemble Methods n Model-Ensemble Trust Region Policy Optimization n Model-based RL via Meta Policy Optimization n Asynchronous Model-based RL


  1. CS 287 Lecture 20 (Fall 2019) Model-based RL Pieter Abbeel UC Berkeley EECS

  2. Outline n Model-based RL n Ensemble Methods n Model-Ensemble Trust Region Policy Optimization n Model-based RL via Meta Policy Optimization n Asynchronous Model-based RL n Vision-based Model-based RL

  3. Reinforcement Learning u t [Figure source: Sutton & Barto, 1998] John Schulman & Pieter Abbeel – OpenAI + UC Berkeley

  4. “Algorithm”: Model-Based RL n For iter = 1, 2, … n Collect data under current policy n Learn dynamics model from past data n Improve policy by using dynamics model n e.g SVG(k) requires dynamics model, but can also run TRPO/A3C in simulator

  5. Why Model-Based RL? n Anticipate data-efficiency n Get model out of data, which might allow for more significant policy updates than just a policy gradient n Learning a model n Re-usable for other tasks [assuming general enough]

  6. “Algorithm”: Model-Based RL for iter = 1, 2, … n Collect data under current policy n Learn dynamics model from past data n Improve policy by using dynamics model Anticipated benefit? – much better sample efficiency So why not used all the time? -- training instability à ME-TRPO -- not achieving same asymptotic performance as model-free methods à MB-MPO

  7. Overfitting in Model-based RL n Standard overfitting (in supervised learning) n Neural network performs well on training data, but poorly on test data n E.g. on prediction of s_next from (s, a) n New overfitting challenge in Model-based RL n policy optimization tends to exploit regions where insufficient data is available to train the model, leading to catastrophic failures n = “model-bias” (Deisenroth & Rasmussen, 2011; Schneider, 1997; Atkeson & Santamaria, 1997) n Proposed fix: Model-Ensemble Trust Region Policy Optimization (ME-TRPO)

  8. Model-Ensemble Trust-Region Policy Optimization [Kurutach, Clavera, Duan, Tamar, Abbeel, ICLR 2018]

  9. ME-TRPO Evaluation n Environments: [Kurutach, Clavera, Duan, Tamar, Abbeel, ICLR 2018]

  10. ME-TRPO Evaluation n Comparison with state of the art [Kurutach, Clavera, Duan, Tamar, Abbeel, ICLR 2018]

  11. ME-TRPO -- Ablation TRPO vs. BPTT in standard model-based RL [Kurutach, Clavera, Duan, Tamar, Abbeel, ICLR 2018]

  12. ME-TRPO -- Ablation Number of learned dynamics models in the ensemble [Kurutach, Clavera, Duan, Tamar, Abbeel, ICLR 2018]

  13. “Algorithm”: Model-Based RL for iter = 1, 2, … n Collect data under current policy n Learn dynamics model from past data n Improve policy by using dynamics model Anticipated benefit? – much better sample efficiency So why not used all the time? -- training instability à ME-TRPO -- not achieving same asymptotic performance as model-free methods à MB-MPO

  14. Model-based RL Asymptotic Performance Because learned (ensemble of) model imperfect n Resulting policy good in simulation(s), but not optimal in real world n Attempted Fix 1: learn better dynamics model n Such efforts have so far proven insufficient n Attempted Fix 2: model-based RL via meta-policy optimization (MB-MPO) n Key idea: n Learn ensemble of models representative of generally how the real world works n Learn an ***adaptive policy*** that can quickly adapt to any of the learned models n Such adaptive policy can quickly adapt to how the real world works n

  15. Model-Based RL via Meta Policy Optimization (MB-MPO) for iter = 1, 2, … n collect data under current adaptive policies n learn ENSEMBLE of K simulators from all past data n meta-policy optimization over ENSEMBLE n à new meta-policy π θ n à new adaptive policies Pieter Abbeel -- UC Berkeley | Covariant.AI | BerkeleyOpenArms.org [Clavera*, Rothfuss*, Schulman, Fujita, Asfour, Abbeel, CoRL 2018]

  16. Model-based via Meta-Policy Optimization MB-MPO [Clavera*, Rothfuss*, Schulman, Fujita, Asfour, Abbeel, CoRL 2018]

  17. MB-MPO Evaluation Pieter Abbeel -- UC Berkeley | Covariant.AI | BerkeleyOpenArms.org [Clavera*, Rothfuss*, Schulman, Fujita, Asfour, Abbeel, CoRL 2018]

  18. MB-MPO Evaluation Pieter Abbeel -- UC Berkeley | Covariant.AI | BerkeleyOpenArms.org [Clavera*, Rothfuss*, Schulman, Fujita, Asfour, Abbeel, CoRL 2018]

  19. MB-MPO Evaluation Pieter Abbeel -- UC Berkeley | Covariant.AI | BerkeleyOpenArms.org [Clavera*, Rothfuss*, Schulman, Fujita, Asfour, Abbeel, CoRL 2018]

  20. MB-MPO Evaluation n Comparison with state of the art model-free Pieter Abbeel -- UC Berkeley | Covariant.AI | BerkeleyOpenArms.org [Clavera*, Rothfuss*, Schulman, Fujita, Asfour, Abbeel, CoRL 2018]

  21. MB-MPO Evaluation n Comparison with state of the art model-based Pieter Abbeel -- UC Berkeley | Covariant.AI | BerkeleyOpenArms.org [Clavera*, Rothfuss*, Schulman, Fujita, Asfour, Abbeel, CoRL 2018]

  22. Pieter Abbeel -- embody.ai / UC Berkeley / Gradescope

  23. So are we done? n No… n Not real-time --- exacerbated by need for extensive hyperparameter tuning n Limited to short horizon n From state (though some results have started to happen from images)

  24. So are we done? n No… n Not real-time --- exacerbated by need for extensive hyperparameter tuning n Limited to short horizon n From state (though some results have started to happen from images)

  25. Environment Collect Data Data Buffer Improve Policy Learn Model

  26. Environment Policy Data Data Collection Parameters Buffer Worker Model Policy Model Improvement Learning Parameters Worker Worker

  27. Questions to be answered 1. Performance?

  28. Questions to be answered 1. Performance? 2. Effect on policy regularization?

  29. Questions to be answered 1. Performance? 2. Effect on policy regularization? 3. Effect on data exploration?

  30. Questions to be answered 1. Performance? 2. Effect on policy regularization? 3. Effect on data exploration? 4. Robustness to hyperparameters?

  31. Questions to be answered 1. Performance? 2. Effect on policy regularization? 3. Effect on data exploration? 4. Robustness to hyperparameters? 5. Robustness to data collection frequency?

  32. Experiments 1. How does the asynch-framework perform? Asynch: ME-TRPO, ME-PPO, MB-MPO Baselines: ME-TRPO, ME-PPO, MB-MPO; TRPO, PPO a. Average Return vs. Time b. Average Return vs. Sample complexity (Timesteps)

  33. Performance Comparison: Wall-Clock Time

  34. Performance Comparison: Sample Complexity

  35. Experiments 1. Performance comparison 2. Are there benefits of being asynchronous other than speed? a. Policy learning regularization b. Exploration in data collection

  36. Policy Learning Regularization Data Collection Data Collection Policy Model Improve- Policy Learning Model ment Improve- Learning ment Partially Synchronous Asynchronous

  37. Policy Learning Regularization

  38. Improved Exploration for Data Collection Partially Data Asynchronous Collection Data Collection Policy Model Improve- Policy Learning Model ment Improve- Learning ment Synchronous

  39. Improved Exploration for Data Collection

  40. Experiments 1. Performance comparison 2. Asynchronous effects 3. Is the asynch-framework robust to data collection frequency?

  41. Ablations: Sampling Speed

  42. Experiments 1. Performance comparison 2. Asynchronous effects 3. Ablations 4. Does the aynch-framework work in real robotics tasks? a. Reaching a position b. Inserting a unique shape into its matching hole in a box c. Stacking a modular block onto a fixed base

  43. Real Robot Tasks: Reaching Position

  44. Real Robot Tasks: Matching Shape

  45. Real Robot Tasks: Stacking Lego

  46. Summary of Asynchronous Model-based RL ● Problem Need fast and data efficient methods for robotic tasks ○ ● Contributions General asynchronous model-based framework ○ Wall-clock time speed-up ○ Sample efficiency ○ Effect on policy regularization & data exploration ○ Effective on real robots ○

  47. Outline n Model-based RL n Ensemble Methods n Model-Ensemble Trust Region Policy Optimization n Model-based RL via Meta Policy Optimization n Asynchronous Model-based RL n Vision-based Model-based RL

  48. World Models 57

  49. World Models 58

  50. World Models 59

  51. World Models 60

  52. World Models 72

  53. Embed to Control 75

  54. Embed to Control 76

  55. SOLAR: Deep Structured Representations for Model-Based Reinforcement Learning Marvin Zhang*, Sharad Vikram*, Laura Smith, Pieter Abbeel, Matthew Johnson, Sergey Levine collect N initial learn representation infer latent dynamics update policy given random rollouts and latent dynamics given observed data latent dynamics (optionally) fine-tune collect new data representation from updated policy https://goo.gl/AJKocL 98

  56. Deep Spatial Autoencoders ■ Deep Spatial Autoencoders for Visuomotor Learning, Finn, Tan, Duan, Darrell, Levine, Abbeel, 2016 ( https://arxiv.org/abs/1509.06113 ) ■ Train deep spatial autoencoder Model-based RL through iLQR in the latent space ■ 99

  57. Robotic Priors / PVEs ■ PVEs: Position-Velocity Encoders for Unsupervised Learning of Structured State Representations Rico Jonschkowski, Roland Hafner, Jonathan Scholz, and Martin Riedmiller ( https://arxiv.org/pdf/1705.09805.pdf ) ■ Learn an embedding without reconstruction 10 0

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