Upgrade to Pro — share decks privately, control downloads, hide ads and more …

論文解説 DiLu: A Knowledge-Driven Approach to Autonomous Driving with Large Language Models

koharite
April 11, 2024

論文解説 DiLu: A Knowledge-Driven Approach to Autonomous Driving with Large Language Models

Presentation for explaining the paper "DiLu " presented from Shanghai Artificial Intelligence Laboratory, East China Normal University, The Chinese University of Hong Kong.
DiLu is designed to knowledge-driven autonomous driving decision-making using LLM (Large Language Model) as human generalized knowledge.

koharite

April 11, 2024
Tweet

More Decks by koharite

Other Decks in Research

Transcript

  1. 2 論⽂情報 タイトル: DiLu: A Knowledge-Driven Approach to Autonomous Driving

    with Large Language Models • 論⽂: https://arxiv.org/html/2309.16292v3 • コード: https://github.com/PJLab-ADG/DiLu • 投稿学会: ICLR2024 • 著者: Licheng Wen, Daocheng Fu1, Xin Li, Xinyu Cai, Tao Ma, Pinlong Cai, Min Dou, Botian Shi, Liang He, Yu Qia • 所属: Shanghai Artificial Intelligence Laboratory, East China Normal University, The Chinese University of Hong Kong 選んだ理由: • knowledge-driven approachと名付けられているがどのように実現しているか知りたいため
  2. 3 knowledge-driven Drawing inspiration from the profound question posed by

    LeCun (2022): “Why can an adolescent learn to drive a car in about 20 hours of practice and know how to act in many situations he/she has never encountered before?” 画像認識など⾃動運転に関する技術について、⼤量データとDNNによるdata-drivenで⾼い性能 が⽰されてきた。 ただし、学習していないシーン(エッジケース/レアケース)では性能がでないこともあり、⼈間の 学習と違う弱点もある。
  3. 4 LLM is as embodiment of human knowledge https://palm-e.github.io/ PaLM-E

    https://github.com/OpenGVLab/Instruct2Ac Instruct2Act Put the polka dot block into the green container. https://voyager.minedojo.org/ Voyager 現在LLM(Large Language Model)が⼈間の知識を最も汎 化して所持しているとして、その応⽤をする研究がある。
  4. 5 Empower LLM to Autonomous driving (1) an environment with

    which an agent can interact; (2) a driver agent with recall, reasoning, and reflection abilities; (3) a memory component to persist experiences. ただし、LLMにdriving taskをそのまま解かせようとしてもそれほど良い性能にならない。 LLMによりknowledge-drivenなdecision-makingを実現するために以下のコンポーネントを設計した。
  5. 6 The framework of DiLu 交通状況を⾔語化して、LLMに与えられるようにする。 Memory Moduleから過去の似た状況を とりだし、付帯する。 ⾃⾞の動きの

    指⽰を得る。 指⽰に従った動作により問題が⽣じた場合は何が問題でどう修正するの がよいか考察させ、修正した内容でMemoryに格納する。
  6. 8 Memory module Initialization Memory recall Memory storage We select

    a few scenarios and manually outline the correct reasoning and decision-making processes for these situations to form the initial memory. 公道に出る前に教習所で学ぶようにいくつのシナリオについて、マニュアルで正しい reasoningとdecision-makingを作ってinitial memoryとして保存する。 Before making a decision, the current driving scenario is embedded into a vector, which serves as the memory key. This key is then clustered and searched to find the closest scenarios in the memory module and their corresponding reasoning processes, or memories. 過去のシナリオをvectorとして埋め込み、似たシナリオを検索可能にする。 正しいreasoningとdecisionされたシナリオを保存する。 運転経験の蓄積 過去の運転経験の活⽤ ベースとなる運転⽅法を教える
  7. 9 Reasoning module (1) encode the scenario by a descriptor;

    (2) recall several experience from the Memory module; (3) generate the prompt; (4) feed the prompt into the LLM; (5) decode the action from the LLMʼs response Memory moduleからの経験とLLMのcommon-sense knowledgeを利⽤して、traffic scenarioの decision-makingを⾏う。
  8. 10 Reflection module However, our goal is to make the

    autonomous driving system learn from mistakes on its own. We discover that LLM can effectively act as a mistake rectifier. 衝突などを起こしてdecision-makingに間違いがあった場合は、LLMによりその状況を説明させ、 修正内容を⽰させる。 修正した内容をMemoryに格納することで似た状況で間違いが起こりづらくなる。
  9. 11 Experiments Closed-loopのsimulation environmentとしてHighway-envを使う。 • Memory moduleから引き出すshot数の違いを⽐較 0-shot, 1-shot, 3-shots,

    5-shots • Memory initialization 5 human-crafted experiences • Memory stored experiencesの違いを⽐較 5, 20, 40 experiences 10 times with different seedsで実験する. https://github.com/Farama-Foundation/HighwayEnv
  10. 12 Experiments GPT-3.5 GPT-4 Chroma ベクトルDB Chromaの使い ⽅について https://note.com/mahlab/ n/nb6677d0fc7c2

    OpenAIのtext-embedding-ada- 002 modelを使ってvectorに変 換され格納される。 Highway-env 各⾞のposition, speed, accelerationが与えられる。
  11. 14 Reasoning module prompt example Highway-envの現在フレームの状 況を記述したtext ベクトル化してqueryとして Memoryに与え、保管されて いるシナリオから類似するも

    のを取り出す。 運転の指針:衝突を避け安全運転など (変更することもできる) 選択できる⾏動; IDLE, Turn-right, Acceleration, Deceleration, ・・・ COT(Chain of Thouhght)として、System promptsに続いてLLMに与えられる。
  12. 20 Case study3 Reflection 衝突の解析と教訓 右レーンにいる⾞との相対距離 と速度が考慮されていない。 (計算はしているが、 Appropriateという判断がされて いる)

    右レーンにいる⾞との相対距離と 速度、Time to collisionの計算が され、右レーンへの移動は危険と 判断し、減速と決定する。
  13. 22 Compare with Reinforcement learning method Highway-envでSOTAのReinforcement Learning(RL) methodのGRAD(Graph Representation

    for Autonomous Driving)と⽐較する。 it generates a global scene representation that includes estimated future trajectories of other vehicles. • lane-4-density-2で両⼿法をtrainingする。 • lane-4-density-2, lane-5-density-2.5, lane-5-density-3の3つの環境でテストする。 • DiLu: 40 experience in Memory, GRAD 600.000 training episodes GRADは異なる環境での性能劣化が⼤きい。 失敗の多くは時間内にブレーキをかけられ ずに前⽅⾞に衝突してしまう。
  14. 25 Effectiveness of Reflection module ベースラインとしての20個のexperiences +12個のsuccessと6個のcorrection experienc +12個のsuccess experiences

    + 6個のcorrection experiences memoryにexperiencesを追加する効果が⾒られる。 少数でも訂正したexperiencesを加える効果がある。