delinqu commited on
Commit
9dbcd98
·
verified ·
1 Parent(s): 9bc0de5

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model:
4
+ - google/paligemma-3b-pt-224
5
+ tags:
6
+ - openpi0
7
+ - jax
8
+ datasets:
9
+ - IPEC-COMMUNITY/fractal20220817_data_lerobot
10
+ ---
11
+
12
+
13
+
14
+ download the model
15
+
16
+ ```bash
17
+ huggingface-cli download --resume-download --local-dir-use-symlinks False ${model} --local-dir $(basename ${model})
18
+ ```
19
+
20
+ launch the openpi0 server, please create the [openpi](https://github.com/Physical-Intelligence/openpi/) environment first
21
+
22
+ ```bash
23
+ export OPENPI_DATA_HOME=/PATH/TO/OPENPI_DATA_HOME
24
+ export LEROBOT_HOME=/PATH/TO/LEROBOT_HOME
25
+
26
+ uv run scripts/serve_policy.py policy:checkpoint \
27
+ --policy.config=pi0_fast_fractal_fft_pt_tokenizer \
28
+ --policy.dir=$THE_MODEL_PATH
29
+ ```