Views
No views yet
run_inference.py script to run a quick test:1python run_inference.py --model_location remyxai/SpaceMinitron-4B
2 --image_source "https://remyx.ai/assets/spatialvlm/warehouse_rgb.jpg"
3 --user_prompt "What is the distance between the man in the red hat and the pallet of boxes?"
4 docker directory, you'll find a dockerized Triton Server for this model. Run the following:1docker build -f Dockerfile -t spacellava-server:latest
2docker run -it --rm --gpus all -p8000:8000 -p8001:8001 -p8002:8002 --shm-size 24G spaceminitron-4B-server:latest
3python3 client.py --image_path "https://remyx.ai/assets/spatialvlm/warehouse_rgb.jpg" \
4 --prompt "What is the distance between the man in the red hat and the pallet of boxes?"@article{chen2024spatialvlm,
title = {SpatialVLM: Endowing Vision-Language Models with Spatial Reasoning Capabilities},
author = {Chen, Boyuan and Xu, Zhuo and Kirmani, Sean and Ichter, Brian and Driess, Danny and Florence, Pete and Sadigh, Dorsa and Guibas, Leonidas and Xia, Fei},
journal = {arXiv preprint arXiv:2401.12168},
year = {2024},
url = {https://arxiv.org/abs/2401.12168},
}
@inproceedings{karamcheti2024prismatic,
title = {Prismatic VLMs: Investigating the Design Space of Visually-Conditioned Language Models},
author = {Siddharth Karamcheti and Suraj Nair and Ashwin Balakrishna and Percy Liang and Thomas Kollar and Dorsa Sadigh},
booktitle = {International Conference on Machine Learning (ICML)},
year = {2024},
}