abdul004 commited on
Commit
cfa3ca0
·
verified ·
1 Parent(s): 25f8bfe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -2
README.md CHANGED
@@ -134,6 +134,22 @@ python run_pi05.py --server wss://YOUR-POD-8000.proxy.runpod.net
134
  python run_pi05.py --server wss://YOUR-POD-8000.proxy.runpod.net --no-jpeg
135
  ```
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
  ## Comparison with ACT Policy
138
 
139
  Trained on the same dataset:
@@ -141,9 +157,19 @@ Trained on the same dataset:
141
  | Policy | Architecture | Inference | Grasp | Generalization |
142
  |--------|-------------|-----------|-------|----------------|
143
  | **Pi0.5** | VLA (3B params) | Remote GPU | ✅ | ✅ Edge positions |
144
- | ACT | Transformer (25M) | Local | ✅ | ⚠️ Center only |
 
 
 
 
 
 
 
 
 
 
145
 
146
- **Key advantage:** Pi0.5 successfully picks up ball from edge positions that ACT couldn't handle - demonstrates better generalization from VLA pre-training.
147
 
148
  ## Infrastructure Notes
149
 
 
134
  python run_pi05.py --server wss://YOUR-POD-8000.proxy.runpod.net --no-jpeg
135
  ```
136
 
137
+ ## External Videos (Phone Capture)
138
+
139
+ Real-world demonstrations recorded externally during evaluation runs:
140
+
141
+ ### JPEG Compression (~270ms)
142
+ ![External Video - JPEG](external_jpeg.gif)
143
+ *External phone recording showing smooth robot control with JPEG compression*
144
+
145
+ ### Raw Images (~600ms)
146
+ ![External Video - Raw](external_raw.gif)
147
+ *Same task without compression - noticeably slower/choppier control*
148
+
149
+ ### Edge Retrieval (Out-of-Distribution)
150
+ ![External Video - Edge](external_edge.gif)
151
+ *Ball placed at workspace edge - a position that appeared in <10% of training episodes*
152
+
153
  ## Comparison with ACT Policy
154
 
155
  Trained on the same dataset:
 
157
  | Policy | Architecture | Inference | Grasp | Generalization |
158
  |--------|-------------|-----------|-------|----------------|
159
  | **Pi0.5** | VLA (3B params) | Remote GPU | ✅ | ✅ Edge positions |
160
+ | ACT | Transformer (25M) | Local | ✅ | Center only |
161
+
162
+ ### Edge Retrieval: Pi0.5 vs ACT
163
+
164
+ **ACT failed at edge positions** - the policy was only trained with ~72 episodes where the ball was mostly in the center/reachable area. When the ball was placed at the edge of the workspace, ACT would miss or fail to reach it entirely.
165
+
166
+ **Pi0.5 succeeds at edge positions** despite having the same training data. This demonstrates the power of VLA pre-training:
167
+
168
+ 1. **SigLIP** (vision encoder) was pre-trained on billions of images - understands "ball" and "edge" concepts generally
169
+ 2. **Gemma** (language model) provides semantic grounding - "pick up ball" applies regardless of position
170
+ 3. **Action Expert** learned smooth motion primitives from diverse robot arms during base model training
171
 
172
+ The base Pi0.5 model was trained on data from many different robot arms performing various tasks. This gives it a strong prior on reachable workspace and arm kinematics that ACT (trained from scratch) simply doesn't have.
173
 
174
  ## Infrastructure Notes
175