Improve model card (#1)
Browse files- Improve model card (7e9e58ff74302ef1687781bad9903f04b22cf8e7)
Co-authored-by: Niels Rogge <[email protected]>
README.md
CHANGED
@@ -1,7 +1,16 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
3 |
---
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
You can download and use this model with:
|
7 |
```python
|
@@ -9,6 +18,8 @@ policy = Pi0Policy.from_pretrained("lerobot/pi0")
|
|
9 |
action = policy.select_action(batch)
|
10 |
```
|
11 |
|
|
|
|
|
12 |
You can easily finetune it on your dataset. For instance on @dana_55517 's [dataset](https://huggingface.co/spaces/lerobot/visualize_dataset?dataset=danaaubakirova%2Fkoch_test&episode=0):
|
13 |
```python
|
14 |
python lerobot/scripts/train.py \
|
@@ -16,4 +27,4 @@ python lerobot/scripts/train.py \
|
|
16 |
--dataset.repo_id=danaaubakirova/koch_test
|
17 |
```
|
18 |
|
19 |
-
Take a look at the [code](https://github.com/huggingface/lerobot/blob/main/lerobot/common/policies/pi0/modeling_pi0.py)
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
library_name: lerobot
|
4 |
+
pipeline_tag: robotics
|
5 |
---
|
6 |
+
|
7 |
+
## Pi0 pretrained model
|
8 |
+
|
9 |
+
This repository contains the model described in [π_0: A Vision-Language-Action Flow Model for General Robot Control](https://huggingface.co/papers/2410.24164).
|
10 |
+
|
11 |
+
See the [Twitter thread](https://x.com/RemiCadene/status/1886823939856589296) and [blog post](https://huggingface.co/blog/pi0) for more info regarding its integration in [LeRobot](https://github.com/huggingface/lerobot).
|
12 |
+
|
13 |
+
## Usage
|
14 |
|
15 |
You can download and use this model with:
|
16 |
```python
|
|
|
18 |
action = policy.select_action(batch)
|
19 |
```
|
20 |
|
21 |
+
## Fine-tuning
|
22 |
+
|
23 |
You can easily finetune it on your dataset. For instance on @dana_55517 's [dataset](https://huggingface.co/spaces/lerobot/visualize_dataset?dataset=danaaubakirova%2Fkoch_test&episode=0):
|
24 |
```python
|
25 |
python lerobot/scripts/train.py \
|
|
|
27 |
--dataset.repo_id=danaaubakirova/koch_test
|
28 |
```
|
29 |
|
30 |
+
Take a look at the [code](https://github.com/huggingface/lerobot/blob/main/lerobot/common/policies/pi0/modeling_pi0.py) regarding the implementation.
|