lerobot/pi0_old

🤗 Hugging Face 来源roboticsapache-2.03.5B 参数14 GBsafetensors✓ 1 个校验和今天更新
一条命令提交

在你的模型文件夹旁边运行它。它会制作种子、将文件与 Hugging Face 比对,然后提交。你只需开始做种,并粘贴你账户中的密钥。它只读取你的文件,绝不修改。如果愿意,可以先阅读脚本。

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo lerobot/pi0_old ./model-folder
需要做种者 →

Pi0 pretrained model

This repository contains the model described in π_0: A Vision-Language-Action Flow Model for General Robot Control.

See the Twitter thread and blog post for more info regarding its integration in LeRobot.

Usage

You can download and use this model with:

policy = Pi0Policy.from_pretrained("lerobot/pi0")
action = policy.select_action(batch)

Fine-tuning

You can easily finetune it on your dataset. For instance on @dana_55517 's dataset:

python lerobot/scripts/train.py \
--policy.path=lerobot/pi0 \
--dataset.repo_id=danaaubakirova/koch_test

Take a look at the code regarding the implementation.