Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FanGShiYuu/CoDrivingLLM
Towards Interactive and Learnable Cooperative Driving Automation: a Large Language Model-Driven Decision-making Framework
https://github.com/FanGShiYuu/CoDrivingLLM
Last synced: 2 months ago
JSON representation
Towards Interactive and Learnable Cooperative Driving Automation: a Large Language Model-Driven Decision-making Framework
- Host: GitHub
- URL: https://github.com/FanGShiYuu/CoDrivingLLM
- Owner: FanGShiYuu
- Created: 2024-08-19T05:28:05.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-24T07:46:40.000Z (3 months ago)
- Last Synced: 2024-08-25T08:30:04.016Z (3 months ago)
- Language: Python
- Homepage: https://fangshiyuu.github.io/CoDrivingLLM/
- Size: 17.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Collaborative_Perception - ~~paper~~
README
# CoDrivingLLM: Towards Interactive and Learnable Cooperative Driving Automation: a Large Language Model-Driven Decision-making Framework
[Shiyu Fang](https://fangshiyuu.github.io/), [Jiaqi Liu](https://jiaqiliu-aca.netlify.app/), [Peng Hang](https://www.researchgate.net/profile/Peng-Hang-3), [Jian Sun](https://www.researchgate.net/profile/Jian-Sun-56)
[Department of Traffic Engineering and Key Laboratory of Road and Traffic Engineering, Ministry of Education, Tongji University](https://tops.tongji.edu.cn/)
[[Project web](https://fangshiyuu.github.io/CoDrivingLLM/)]## Getting started 🚀
Install the dependent package
```shell
pip install -r requirements.txt
```
Run CoDrivingLLM
```shell
python Run_multi_CAV_LLM.py
```
remember to add your API key first## Overview 🔍
### Repo description
In this repository, you can expect to find the following features:Included:
* Code for CoDrivingLLM (including highway, merge, intersection)
* Video and Raw Data of our experimentNot included:
* Code for Comparison Algorithm (including iDFST, Cooperative Game, MADQN)### Files description
#### Run_multi_CAV_LLM.py 📄:
Main script for debuging and running LLM-based agent at different scenarios#### llm_controller folder 📂:
Main modules for LLM agent and other tools* llm_agent_action.py :
main script for building the LLM agent, which needs to take the prompt and
scenario information as input, request the remote servers from OpenAI,
get the feedback, parse the feedback, and then output the final decision-making for each CAV.* llm_agent_negotiation_system.py :
script for generating the advisory passing sequence of vehicles in each conflict pair based on the
severity of the conflict for each CAV final decision, features a centralized-distributed coupled architecture.* memory.py :
stores all the functions required by the memory module, including the acquisition of similar memories and the storage of new memories.* prompt_llm.py: all prompts used to connect the traffic scenario, CAV and ChatGPT.
Different scenarios may need different prompt, which needs to be revised and updated according
to the scenario's meets.* scenario_description.py : the main function file for translating the traffic scenarios into natural
languages that LLM can understand.#### highway_env folder 📂:
Open source highway-env simulator with different traffic scenarios,
including single-lane unsignalized intersection, on-ramp scenario, and highway scenario,which are corresponded to
intersection_env.py, merge_env_v1.py, and highway_env.py, respectively.#### videos&data 📂:
Video of vehicle operation and raw data of different cooperative driving method in each experiment.### If you have any questions, feel free to contact us ([email protected]) 📧.