Views
No views yet
1from transformers import AutoProcessor, AutoModelForVision2Seq
2
3model = AutoModelForVision2Seq.from_pretrained("MINT-SJTU/RoboFAC-7B")
4processor = AutoProcessor.from_pretrained("MINT-SJTU/RoboFAC-7B")
5
6# Example usage with image frames and a question
7inputs = processor(images=[...], text="Why did the robot fail?", return_tensors="pt").to("cuda")
8outputs = model.generate(**inputs)
9print(processor.batch_decode(outputs, skip_special_tokens=True))1@misc{lu2025robofaccomprehensiveframeworkrobotic,
2 title={RoboFAC: A Comprehensive Framework for Robotic Failure Analysis and Correction},
3 author={Weifeng Lu and Minghao Ye and Zewei Ye and Ruihan Tao and Shuo Yang and Bo Zhao},
4 year={2025},
5 eprint={2505.12224},
6 archivePrefix={arXiv},
7 primaryClass={cs.RO},
8 url={https://arxiv.org/abs/2505.12224}
9}