Eventual Logo
Turning robot video into training-ready data with daft-physical-ai
open source
July 20, 2026

Turning robot video into training-ready data with daft-physical-ai

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.

Cutting dead frames from DROID: 500 hours of robot data in 32 seconds
open source
August 3, 2026

Cutting dead frames from DROID: 500 hours of robot data in 32 seconds

The robot state recorded next to the video tells you which frames matter before you decode any pixels. Trimming all of DROID takes 32 seconds on a laptop.

What if more data alone won't solve robotics? Ken Goldberg on why good old-fashioned engineering still matters
company
July 29, 2026

What if more data alone won't solve robotics? Ken Goldberg on why good old-fashioned engineering still matters

Ken Goldberg argues that robotics needs more than data - modularity, algorithms, and metrics still matter. A breakdown of his MIT talk on the 100,000 year data gap.

How we made our LeRobot video reader up to 15× faster
open source
July 16, 2026

How we made our LeRobot video reader up to 15× faster

LeRobot has emerged as the dominant open format for robot learning data, but decoding frames is expensive. Here's how we made Daft's native LeRobot reader up to 15× faster.

Finding a Needle in the Haystack: Querying Physical AI Data with Daft
open source
June 26, 2026

Finding a Needle in the Haystack: Querying Physical AI Data with Daft

Pose + semantic search over Apple's EgoDex hand-manipulation dataset with Daft: SigLIP embeddings meet hand-pose geometry. Ctrl+F for physical AI data.

Disk is the data plane: Flight Shuffle in Daft
open source
June 5, 2026

Disk is the data plane: Flight Shuffle in Daft

How Daft rebuilt distributed shuffle around Arrow Flight, local disk, and streaming reads to handle multi-terabyte workloads.

The limiting factor in physical AI isn't compute or architecture - it's data
company
June 2, 2026

The limiting factor in physical AI isn't compute or architecture - it's data

Robotics is hitting a data wall. The architecture debate gets much of the attention, but the data constraint is more fundamental.

First-class observability in Daft
open source
May 25, 2026

First-class observability in Daft

A new dashboard, per-operator memory attribution, and OTel endpoints for your existing collector. Everything you need to see what Daft is doing with your query.

Scaling As-of Joins
open source
May 13, 2026

Scaling As-of Joins

How we built, broke, and re-built our ASOF joins — 5.5x faster, half the memory of pandas, and scaled to a distributed cluster.

daft.VideoFile: Seek Lazily, Get Frames
open source
May 8, 2026

daft.VideoFile: Seek Lazily, Get Frames

daft.VideoFile decodes only the frames you need. Keyframes, time-sampled, or windowed seek, built for robotics datasets, dashcams, and moderation queues.

VLAs are dead, long live World Action Models - a summary of Jim Fan's Robotics End Game talk
company
May 8, 2026

VLAs are dead, long live World Action Models - a summary of Jim Fan's Robotics End Game talk

Jim Fan argues robotics will follow the exact LLM playbook - and VLAs are already being replaced by World Action Models.

What is physical AI - is it more than just hype?
company
May 5, 2026

What is physical AI - is it more than just hype?

Physical AI has become a real trend, but is there something real here or is it just hype?

Daft Extensions Featuring daft-h3: Native Rust Performance, Community Owned
open source
May 4, 2026

Daft Extensions Featuring daft-h3: Native Rust Performance, Community Owned

Daft now supports native extensions via Apache Arrow's C Data Interface. daft-h3 is the first community extension — 9 Rust-native H3 geospatial functions, 3–16x faster than Python UDFs.

Audio transcription at scale with daft.AudioFile
open source
April 29, 2026

Audio transcription at scale with daft.AudioFile

How to transcribe thousands of audio files with Whisper using daft.AudioFile — handling resampling, silence splitting, and worker-resident model loading without the boilerplate.

Image Embeddings: Tutorial & Examples
open source
April 27, 2026

Image Embeddings: Tutorial & Examples

Learn about the concept of image embeddings, their various use cases, and best practices for handling them in data processing workflows.

daft.File: Lazy Metadata Filters
open source
April 21, 2026

daft.File: Lazy Metadata Filters

Filter millions of files by path, size, and content type before opening any of them. Cheap operations first, expensive operations on the survivors.

Multimodal Embeddings: Tutorial & Examples
open source
April 15, 2026

Multimodal Embeddings: Tutorial & Examples

Learn multimodal embedding techniques for cross-modal search, recommendation systems, and content moderation applications.

Open-sourcing 43 Billion Tokens of SEC EDGAR
case studies
April 9, 2026

Open-sourcing 43 Billion Tokens of SEC EDGAR

Datamule, Teraflop AI, and Eventual collaborated to release the SEC-EDGAR dataset containing 590 GB of data, spanning 8 million samples and 43 billion tokens from all major filings in the SEC EDGAR database.

Daft UDF Patterns: Four Patterns, One Notebook
open source
March 30, 2026

Daft UDF Patterns: Four Patterns, One Notebook

Row-wise, generator, async, and stateful UDFs — one notebook, one dataset, runnable side by side.

GPU Inference with @daft.cls
open source
March 23, 2026

GPU Inference with @daft.cls

Run GPU models on millions of rows without OOM. Real patterns from ByteDance, Essential AI, and more.

Stateful UDFs with daft.cls: Python Classes that Scale
open source
March 17, 2026

Stateful UDFs with daft.cls: Python Classes that Scale

Turn any Python class into a distributed operator. Hold models, connections, and clients across rows with one decorator.

Stateless UDFs with daft.func - four patterns, one decorator
open source
March 10, 2026

Stateless UDFs with daft.func - four patterns, one decorator

Row-wise, async, generator, and batch UDFs in Daft — one decorator, zero boilerplate, local or distributed.

Daft UDFs: What is a UDF and why do you need one?
open source
March 3, 2026

Daft UDFs: What is a UDF and why do you need one?

Daft User Defined Functions (UDFs) let you run custom Python inside a distributed DataFrame pipeline. Leverage Row-wise, Async, Generators, and Batch.

How We're Making Observability Better in Daft
open source
March 2, 2026

How We're Making Observability Better in Daft

Daft Observability Roadmap: metrics, OTEL integration, real-time dashboards, and DataFrame APIs for debugging and monitoring distributed pipelines.

Introducing daft.File: Work with Any File, Anywhere
open source
February 17, 2026

Introducing daft.File: Work with Any File, Anywhere

daft.File brings lazy, distributed handling for audio, video, PDFs, and code to Daft DataFrames. One interface, local or remote.

Daft OSS: New Governance Model
announcements
February 10, 2026

Daft OSS: New Governance Model

Today, we're introducing updates to the Daft OSS governance model defining new roles for contributors and maintainers with expanded permissions.

Tuning Daft's Distributed UDFs: Lessons from ByteDance
open source
February 6, 2026

Tuning Daft's Distributed UDFs: Lessons from ByteDance

Learn from the ByteDance Volcengine LAS Team on how to optimize Daft UDFs on Ray. Discover the formula to evenly distribute data across actors.

Announcing Early Access to Daft Cloud
open source
January 20, 2026

Announcing Early Access to Daft Cloud

Early access to Daft Cloud for running model-driven AI pipelines reliably at production scale. Built on Daft OSS for continuous, resilient execution.

Newsletter

Get new posts in your inbox

Engineering, product, and company updates from Eventual.

Eventual Blog