Card: add progress preview + native-loader note
Browse files
README.md
CHANGED
|
@@ -1,25 +1,20 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
-
- en
|
| 4 |
-
license: apache-2.0
|
| 5 |
-
pipeline_tag: robotics
|
| 6 |
tags:
|
| 7 |
-
- OpenRAL
|
| 8 |
-
- rskill
|
| 9 |
-
-
|
| 10 |
-
-
|
| 11 |
-
-
|
| 12 |
-
-
|
| 13 |
-
-
|
| 14 |
-
-
|
| 15 |
-
-
|
| 16 |
-
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
| 19 |
base_model:
|
| 20 |
-
-
|
| 21 |
-
base_model_relation: quantized
|
| 22 |
-
inference: false
|
| 23 |
---
|
| 24 |
|
| 25 |
# rskill-robometer-4b-nf4
|
|
@@ -30,6 +25,29 @@ inference: false
|
|
| 30 |
> normalized progress (0–1)** and **per-frame success probability**, queried on
|
| 31 |
> demand by the Reasoner. **No actuators. Advisory-only.** Apache-2.0.
|
| 32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
## Quick Start
|
| 34 |
|
| 35 |
```bash
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
tags:
|
| 3 |
+
- OpenRAL
|
| 4 |
+
- rskill
|
| 5 |
+
- reward
|
| 6 |
+
- reward-model
|
| 7 |
+
- robot-learning
|
| 8 |
+
- progress-estimation
|
| 9 |
+
- success-detection
|
| 10 |
+
- qwen3-vl
|
| 11 |
+
- nf4
|
| 12 |
+
- bitsandbytes
|
| 13 |
+
license: apache-2.0
|
| 14 |
+
language:
|
| 15 |
+
- en
|
| 16 |
base_model:
|
| 17 |
+
- Qwen/Qwen3-VL-4B-Instruct
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
# rskill-robometer-4b-nf4
|
|
|
|
| 25 |
> normalized progress (0–1)** and **per-frame success probability**, queried on
|
| 26 |
> demand by the Reasoner. **No actuators. Advisory-only.** Apache-2.0.
|
| 27 |
|
| 28 |
+
## Preview
|
| 29 |
+
|
| 30 |
+
Per-frame **progress** + **success** on a real **LIBERO `libero_spatial`** deploy
|
| 31 |
+
clip — task *"pick up the black bowl and place it on the plate"* — scored live
|
| 32 |
+
with the NF4 Qwen3-VL-4B backbone (peak **3.79 GB**, RTX 4070 Laptop 8 GB).
|
| 33 |
+
Progress rises from **0.44** (first 20% of frames) to **0.72** (last 20%) as the
|
| 34 |
+
bowl is grasped and placed:
|
| 35 |
+
|
| 36 |
+

|
| 37 |
+
|
| 38 |
+
| Start of clip | Mid-reach | Bowl placed |
|
| 39 |
+
| :---: | :---: | :---: |
|
| 40 |
+
|  |  |  |
|
| 41 |
+
|
| 42 |
+
> In deploy the Reasoner scores a **trailing window** each tick and reads the
|
| 43 |
+
> last-frame value (`success_now`) — exactly what this preview reproduces. HF
|
| 44 |
+
> cards render images but not HTML5 `<video>`; the full overlay is
|
| 45 |
+
> **[`media/progress.mp4`](media/progress.mp4)** (20 frames, downloadable).
|
| 46 |
+
> Regenerate with `tools/robometer_per_frame_demo.py --media-dir media`.
|
| 47 |
+
>
|
| 48 |
+
> Runs the lerobot 0.6.0 in-tree `RobometerRewardModel` (plain `transformers`,
|
| 49 |
+
> no `robometer` git package, no `transformers==4.57.1` pin) — ADR-0057 (amended).
|
| 50 |
+
|
| 51 |
## Quick Start
|
| 52 |
|
| 53 |
```bash
|