Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 6,727 Bytes
932d990 1cce69a 932d990 8a37195 824eff6 8a37195 c3694ad 8a37195 c3694ad 461b74e c3694ad 8a37195 c3694ad 8a37195 7320dc4 8a37195 7320dc4 8a37195 461b74e 8a37195 7432418 8a37195 c18f2db 28ef794 de93564 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | ---
title: Visualize Dataset (v2.0+ latest dataset format)
emoji: π»
colorFrom: blue
colorTo: green
sdk: docker
app_port: 7860
pinned: false
license: apache-2.0
hf_oauth: true
hf_oauth_scopes:
- read-repos
hf_oauth_expiration_minutes: 480
---
# LeRobot Dataset Visualizer
LeRobot Dataset Tool and Visualizer is a web application for interactive exploration and visualization of robotics datasets, particularly those in the LeRobot format. It enables users to browse, view, and analyze episodes from large-scale robotics datasets, combining synchronized video playback with rich, interactive data graphs.
## Project Overview
This tool is designed to help robotics researchers and practitioners quickly inspect and understand large, complex datasets. It fetches dataset metadata and episode data (including video and sensor/telemetry data), and provides a unified interface for:
- Navigating between organizations, datasets, and episodes
- Watching episode videos
- Exploring synchronized time-series data with interactive charts
- Analyzing action quality and identifying problematic episodes
- Visualizing robot poses in 3D using URDF models
- Paginating through large datasets efficiently
## Key Features
- **Dataset & Episode Navigation:** Quickly jump between organizations, datasets, and episodes using a sidebar and navigation controls.
- **Synchronized Video & Data:** Video playback is synchronized with interactive data graphs for detailed inspection of sensor and control signals.
- **Overview Panel:** At-a-glance summary of dataset metadata, camera info, and episode details.
- **Statistics Panel:** Dataset-level statistics including episode count, total recording time, frames-per-second, and an episode-length histogram.
- **Action Insights Panel:** Data-driven analysis tools to guide training configuration β includes autocorrelation, state-action alignment, speed distribution, and cross-episode variance heatmap.
- **Filtering Panel:** Identify and flag problematic episodes (low movement, jerky motion, outlier length) for removal. Exports flagged episode IDs as a ready-to-run LeRobot CLI command.
- **3D URDF Viewer:** Visualize robot joint poses frame-by-frame in an interactive 3D scene, with end-effector trail rendering. Supports SO-100, SO-101, and OpenArm bimanual robots.
- **Annotations Panel:** Hand-edit the v3.1 language schema (`language_persistent` + `language_events`) β subtask, plan, memory, interjection + paired speech, and VQA atoms with bounding-box / keypoint / count / attribute / spatial answers. VQA bboxes and keypoints render as overlays on the video player; drag or click on a camera to draw new ones. Backed by an optional FastAPI service (in `backend/`) for parquet rewrites and HF Hub push.
- **Efficient Data Loading:** Uses parquet and JSON loading for large dataset support, with pagination, chunking, and lazy-loaded panels for fast initial load.
- **Responsive UI:** Built with React, Next.js, and Tailwind CSS for a fast, modern user experience.
## Technologies Used
- **Next.js** (App Router)
- **React**
- **Recharts** (for data visualization)
- **Three.js** + **@react-three/fiber** + **@react-three/drei** (for 3D URDF visualization)
- **urdf-loader** (for parsing URDF robot models)
- **hyparquet** (for reading Parquet files)
- **Tailwind CSS** (styling)
## Getting Started
### Prerequisites
This project uses [Bun](https://bun.sh) as its package manager. If you don't have it installed:
```bash
# Install Bun
curl -fsSL https://bun.sh/install | bash
```
### Installation
Install dependencies:
```bash
bun install
```
### Development
Run the development server:
```bash
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `src/app/page.tsx` or other files in the `src/` directory. The app supports hot-reloading for rapid development.
### Other Commands
```bash
# Build for production
bun run build
# Start production server
bun start
# Run linter
bun run lint
# Format code
bun run format
```
### Environment Variables
- `DATASET_URL`: (optional) Base URL for dataset hosting (defaults to HuggingFace Datasets).
- `NEXT_PUBLIC_ANNOTATE_BACKEND_URL`: (optional) URL of the FastAPI annotation
backend (`backend/app.py`). When set, the Annotations tab can save edits and
rewrite parquet shards / push to the Hub. When unset the tab is read/edit
only with sessionStorage persistence.
## Annotations backend (optional)
The Annotations tab edits LeRobot v3.1 language atoms β `language_persistent`
(broadcast subtask/plan/memory) and `language_events` (per-frame
interjection / vqa / speech) β and renders existing bbox/keypoint atoms over
the video player. Edits live in `sessionStorage` by default; to write the
new columns into `data/chunk-*/file-*.parquet` (matching the writer in
[lerobot#3471](https://github.com/huggingface/lerobot/pull/3471)) and push the
result to the Hub, run the bundled FastAPI service:
```bash
# 1. install + start the backend (port 7861 by default)
cd backend
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
uvicorn app:app --port 7861 --reload
# 2. start the visualizer with the backend URL configured
cd ..
NEXT_PUBLIC_ANNOTATE_BACKEND_URL=http://127.0.0.1:7861 bun run dev
```
The backend exposes:
- `POST /api/dataset/load` β load a dataset by `repo_id` or `local_path`
- `GET /api/episodes/{ep}/atoms` β list atoms for an episode
- `POST /api/episodes/{ep}/atoms` β replace atoms (event timestamps are
snapped to exact source-frame timestamps before persisting)
- `GET /api/episodes/{ep}/frame_timestamps` β used client-side for snapping
- `POST /api/export` β rewrite parquet with the new language columns plus
the dataset-level `tools` column (drops legacy `subtask_index`)
- `POST /api/push_to_hub` β export and push to a target repo
## Docker Deployment
This application can be deployed using Docker with bun for optimal performance and self-contained builds.
### Build the Docker image
```bash
docker build -t lerobot-visualizer .
```
### Run the container
```bash
docker run -p 7860:7860 lerobot-visualizer
```
The application will be available at [http://localhost:7860](http://localhost:7860).
### Run with custom environment variables
```bash
docker run -p 7860:7860 -e DATASET_URL=your-url lerobot-visualizer
```
## Contributing
Contributions, bug reports, and feature requests are welcome! Please open an issue or submit a pull request.
### Acknowledgement
The app was orignally created by [@Mishig25](https://github.com/mishig25) and taken from this PR [#1055](https://github.com/huggingface/lerobot/pull/1055)
|