LMDrive icon indicating copy to clipboard operation
LMDrive copied to clipboard

[CVPR 2024] LMDrive: Closed-Loop End-to-End Driving with Large Language Models

Results 48 LMDrive issues
Sort by recently updated
recently updated
newest added

Hello, thank you for your excellent work. In memfuser.py, how are 2500 and 2501:2506 determined in the features queried from decoder? ```python traffic_feature = hs[:, :2500] traffic_light_state_feature = hs[:, 2500]...

Great work! How much time does the training process require?

@deepcs233 Hello, how can I remove the suddenly appearing pedestrians? In which folder should I modify to achieve this?

@deepcs233 I want to replace the ego vehicle with an unmanned boat during evaluation. Should I make changes from both aspects: the code and the simulation?

您好,想请问下该怎么去执行推理过程,不测试指标,这样是可行的吗

docker pull carlasim/carla:0.9.10.1 failed, Error response from daemon: Get "https://registry-1.docker.io/v2/": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) is there any pratical methods to docker pull...

你好: 我观察到yaml里有llm_model,这在您的说明中表示llm_model的ckpt,但是这/data/llava-v1.5-7b似乎是一个文件夹,从代码来看似乎需要tokenizer和llm的ckpt self.llm_tokenizer = LlamaTokenizer.from_pretrained(llm_model, use_fast=False, truncation_side="left") self.llm_model = LlamaForCausalLM.from_pretrained(llm_model, torch_dtype=torch.float16, low_cpu_mem_usage=True)