rollingoat commited on
Commit
c009fc3
·
verified ·
1 Parent(s): 5d4eec2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -4
README.md CHANGED
@@ -23,13 +23,15 @@ Create and activate a conda env, then install the dependencies:
23
  conda create -n robotdata python=3.10 -y
24
  conda activate robotdata
25
  pip install h5py numpy opencv-python datasets
26
- pip install lerobot
27
  ```
28
 
 
 
 
29
  Notes:
30
- - Python 3.10 is the most broadly compatible with LeRobot; 3.11 also works.
31
- - `lerobot` pulls in `torch`, `huggingface_hub`, and other heavy deps. If the resolver is slow, install `lerobot` first and add the smaller packages after.
32
- - If you need a specific CUDA build of `torch`, install it before `lerobot` using the selector on pytorch.org.
33
 
34
  Quick sanity check:
35
 
 
23
  conda create -n robotdata python=3.10 -y
24
  conda activate robotdata
25
  pip install h5py numpy opencv-python datasets
26
+ pip install "lerobot @ git+https://github.com/huggingface/lerobot@0cf864870cf29f4738d3ade893e6fd13fbd7cdb5"
27
  ```
28
 
29
+ **Why this specific commit is required for Pi-0.5 / OpenPI:**
30
+ LeRobot 0.4.3+ writes datasets in the v3.0 format, which **OpenPI (Pi-0 / Pi-0.5) cannot read**. OpenPI requires the v2.1 format, which is produced by LeRobot commit `0cf864870cf29f4738d3ade893e6fd13fbd7cdb5` (reports itself as version `0.1.0`). Do **not** upgrade LeRobot unless you also upgrade the downstream training code.
31
+
32
  Notes:
33
+ - Python 3.10 is the most broadly compatible with this LeRobot commit; 3.11 also works.
34
+ - `lerobot` pulls in `torch`, `huggingface_hub`, and other heavy deps. If you need a specific CUDA build of `torch`, install it before `lerobot` using the selector on pytorch.org.
 
35
 
36
  Quick sanity check:
37