cd /news/artificial-intelligence/turning-robot-video-into-training-re… · home topics artificial-intelligence article
[ARTICLE · art-66254] src=eventual.ai ↗ pub= topic=artificial-intelligence verified=true sentiment=↑ positive

Turning robot video into training-ready data

Eventual Inc. released daft-physical-ai, an open-source Python library built on Daft that provides ready-made operations for turning raw robot video into training-ready data, starting with hand tracking and reward scoring as user-defined functions. The library runs lazily, batched, and distributed, allowing teams to annotate frames, score episodes, and filter data without building custom plumbing.

read2 min views3 publishedJul 21, 2026
Turning robot video into training-ready data
Image: source

Back to Blog A Python library built on Daft for turning robot video into training-ready data, starting with hand tracking and reward scoring as UDFs, with more to come.

by YK SugiIf you're building physical AI, daft-physical-ai gives you ready-made operations for the work that sits between raw robot recordings and a trained model. It's a new open-source Python library built on Daft:

Each operation slots into any pipeline and runs lazily, batched, and distributed, with Daft handling the execution. We're starting with two use cases, hand tracking and reward scoring, with more to come.

Why #

Progress in physical AI comes down to what you can do with your data. Everyone is collecting more of it, but the harder part is turning what you already have into something a model can learn from: annotating frames, scoring episodes, filtering out the runs you shouldn't train on. Today most teams build that plumbing themselves.

We wanted anyone working on physical AI to be able to skip that. Daft already reads LeRobot datasets natively, streaming them straight from Hugging Face, and we recently made it up to 15× faster. daft-physical-ai builds on top, packaging the operations that come after reading frames into UDFs you drop into your own pipeline, so your time goes to the model instead of the plumbing.

Use case 1: hand tracking #

track_hands

takes a Daft image column and returns a hand-pose column. Pick MediaPipe (CPU, 2D) or WiLoR (GPU, 3D MANO keypoints) - both return the same schema, so the rest of your pipeline doesn't change. Each method installs as an extra: pip install "daft-physical-ai[mediapipe]"

or [wilor] .

Because it's a lazy, batched Daft UDF, nothing runs until you materialize - and frames annotate in parallel when they do. EgoDex ships ground-truth hand poses, so you can score the predictions right in the pipeline: on the sample above, MediaPipe reaches detect=100%

, PCK@.1/.2/.3 = 49/84/96

.

Use case 2: reward scoring #

score_rewards

scores robot episodes with a reward model (Robometer-4B): per-frame task progress (0-1) plus a success probability, written back as a dataset column. You bring a running Robometer eval server (local GPU or Modal) and point the pipeline at its URL.

A healthy episode climbs toward 1.0; a curve that flatlines near 0 is a failed, stalled, or mislabeled episode.

The scores are ordinary columns, so quality gates are one-liners - here, flagging episodes the model doubts succeeded before they reach BC or RL training:

Try it #

The easiest way to try it is to generate a runnable demo - a notebook walking through one of the use cases above. With uvx

, generating one is a single command:

The package is on PyPI, and the source, examples, and setup details are in the daft-physical-ai repo.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @eventual inc. 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/turning-robot-video-…] indexed:0 read:2min 2026-07-21 ·