Views
No views yet
pi05_base model, converted from the original JAX/Flax implementation.1python examples/convert_jax_model_to_pytorch.py \
2 --checkpoint_dir /pi05_base \
3 --config_name pi05_base \
4 --output_path /pi05_base/pytorch/fp32/ \
5 --precision float321from openpi.models_pytorch.pi0_pytorch import PI0Pytorch
2import torch
3
4# Load the model
5model = PI0Pytorch.from_pretrained("pepijn223/pi05_base_fp32")
6
7# The model expects inputs in the format:
8# - images: torch.Tensor of shape [batch, height, width, channels]
9# - text: tokenized text prompts
10# - proprioceptive_state: robot state information (if applicable)1@article{openpi2024,
2 title={Open-World Robotic Manipulation with Vision-Language-Action Models},
3 author={Physical Intelligence},
4 year={2024},
5 url={https://github.com/Physical-Intelligence/openpi}
6}