VideoChatGPT
6kplus commited on
Commit
e88c55b
·
verified ·
1 Parent(s): 1a33f17

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -3
README.md CHANGED
@@ -1,3 +1,28 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # DriVLMe: Enhancing LLM-based Autonomous Driving Agents with Embodied and Social Experiences
6
+
7
+ ### [Project Page](https://sled-group.github.io/driVLMe/) | [Paper](https://arxiv.org/abs/2406.03008) | [Video](https://youtu.be/Ep5fYLGkmsg) | [Code](https://github.com/sled-group/driVLMe/tree/main)
8
+
9
+ Yidong Huang, Jacob Sansom, Ziqiao Ma, Felix Gervits, Joyce Chai
10
+ University of Michigan, ARL
11
+ IROS 2024
12
+
13
+
14
+ You can also download the pretrained checkpoints from [this link](https://www.dropbox.com/scl/fo/neqjdlhohygoa0wrv4uuy/AAjarkE6WY6sKt4LoAfyZ3c?rlkey=e0yvw6g1j8qqdp63vhgi0722d&st=tp2w6h3f&dl=0)
15
+
16
+ To run the open-loop evaluation, we can use the command
17
+ ```shell
18
+ python drivlme/single_video_inference_SDN.py --model-name /nfs/turbo/coe-chaijy-unreplicated/pre-trained-weights/LLaVA/LLaVA-7B-Lightening-v1-1/ --projection_path ./DriVLMe_model_weights/bddx_pretrain_ckpt/mm_projector.bin --lora_path ./DriVLMe_model_weights/DriVLMe/ --json_path datasets/SDN_test_actions.json --video_root videos/SDN_test_videos/ --out_path SDN_test_actions.json
19
+
20
+ python evaluation/physical_action_acc.py
21
+ ```
22
+ for NfD task and
23
+ ```shell
24
+ python drivlme/single_video_inference_SDN.py --model-name /nfs/turbo/coe-chaijy-unreplicated/pre-trained-weights/LLaVA/LLaVA-7B-Lightening-v1-1/ --projection_path ./DriVLMe_model_weights/bddx_pretrain_ckpt/mm_projector.bin --lora_path ./DriVLMe_model_weights/DriVLMe/ --json_path datasets/SDN_test_conversations.json --video_root videos/SDN_test_videos/ --out_path SDN_test_conversations.json
25
+
26
+ python evaluation/diag_action_acc.py
27
+ ```
28
+ for RfN task.