Views
No views yet
nut_thread)1# Requires the OpenVLA-OFT codebase: https://github.com/moojink/openvla-oft
2from transformers import AutoModelForVision2Seq, AutoProcessor
3
4repo = "bhe1004/FIRe-VLA-OpenVLA-NutThread-Sim"
5processor = AutoProcessor.from_pretrained(repo, trust_remote_code=True)
6model = AutoModelForVision2Seq.from_pretrained(repo, trust_remote_code=True)
7# OFT extras bundled in the repo: action_head, proprio_projector,
8# lora_adapter, dataset_statistics.jsonbhe1004/FIRe-VLA-OpenVLA-NutThread-Sim