Views
No views yet
| Resource | URL |
|---|---|
| Model (this repo) | SAINITHIN/DriveSafe_LLaMA_Adapter |
| Source code | github.com/Sainithin-bit/DriveSafe |
| Base LLM (DriveSafe paper) | meta-llama/Meta-Llama-3.1-8B-Instruct |
| Related context pipeline | SAINITHIN/Exaplanation_Distillation |
| Upstream checkpoint | OpenGVLab/LLaMA-Adapter v1.0.0 |
| File | Description |
|---|---|
llama_adapter_len10_layer30_release.pth | OpenGVLab LLaMA-Adapter release checkpoint (PyTorch, Git LFS) |
adapter_config.json | Architecture / training metadata |
training_config.json | Paper hyperparameters (Sec. IV-B) |
configs/safety_keyword_map.json).meta-llama/Meta-Llama-3.1-8B-Instruct1pip install huggingface_hub
2huggingface-cli login
3
4huggingface-cli download SAINITHIN/DriveSafe_LLaMA_Adapter \
5 llama_adapter_len10_layer30_release.pth \
6 adapter_config.json \
7 --local-dir ./checkpoints/DriveSafe_LLaMA_Adapter1git lfs install
2git clone https://huggingface.co/SAINITHIN/DriveSafe_LLaMA_Adapter
3cd DriveSafe_LLaMA_Adapter
4git lfs pull1git clone https://github.com/Sainithin-bit/DriveSafe.git
2cd DriveSafe
3
4python risk_assessment/infer_risk.py \
5 --caption-file outputs/captions/example.json \
6 --adapter-repo SAINITHIN/DriveSafe_LLaMA_Adapter \
7 --output outputs/risk1@inproceedings{artham2026drivesafe,
2 title = {{DriveSafe}: A Framework for Risk Detection and Safety Suggestions in Driving Scenarios},
3 author = {Artham, Sainithin and Dasgupta, Avijit and Gangisetty, Shankar and Jawahar, C. V.},
4 booktitle = {IEEE International Conference on Robotics and Automation (ICRA)},
5 year = {2026}
6}