Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.24 KB

File metadata and controls

41 lines (25 loc) · 1.24 KB

UMI Visualizer

A high-performance visualizer for Universal Manipulation Interface (UMI) datasets using Rerun.

Installation

  1. Generate your "dataset.zarr" data from the UMI repository (Reference UMI repository)

This project uses uv for dependency management.

  1. Install uv (for detailed installation guide refer Install uv):

    curl -sSf [https://astral.sh/uv/install.sh](https://astral.sh/uv/install.sh) | sh
    
  2. Install System Dependencies (Linux only):

    sudo apt-get update && sudo apt-get install -y libblosc-dev liblz4-dev
    
  3. Run the Visualizer:

    uv run main.py /path/to/your/dataset.zarr --episode 1
    
  4. Use [SPACEBAR] to start or pause the Visualization

  5. Close the Rerun Window and press Ctrl+C in the terminal to stop the execution

  6. Running tests:

    uv run black .
    uv run ruff check . --fix
    uv run mypy main.py
    uv run -m pytest

image