Views
No views yet
| Subfolder | Description |
|---|---|
libero-qwen25-openvla | Baseline OpenVLA-style policy with no embodied reasoning — direct action prediction. |
libero-qwen25-object-full-reasoning-vla | Full object-centric reasoning before action prediction. |
libero-qwen25-object-rnbencore-reasoning-vla | RnB-EnCoRe object reasoning primitives. |
<subfolder>/
├── checkpoints/
│ └── latest-checkpoint.pt
├── config.json
└── dataset_statistics.json.pt at <subfolder>/checkpoints/latest-checkpoint.pt, with companion config.json and dataset_statistics.json.pt checkpoints loaded through the project codebase rather than the transformers API — download the model folder, then point the codebase at the checkpoint.pip install -U huggingface_hubhf download stanfordasl/libero-rnbencore-models --local-dir ./libero-rnbencore-models1hf download stanfordasl/libero-rnbencore-models \
2 --include "libero-qwen25-openvla/*" \
3 --local-dir ./libero-rnbencore-models1# Replace the entrypoint/flag with the project codebase's eval script.
2python run_libero_eval.py \
3 --pretrained_checkpoint ./libero-rnbencore-models/libero-qwen25-openvla/checkpoints/latest-checkpoint.ptlibero-qwen25-object-full-reasoning-vla or libero-qwen25-object-rnbencore-reasoning-vla to run the other policies. For dataset prep, prompting, inference, and evaluation, follow the project repository above.