Skip to content

UT-SysML/seaotter

Repository files navigation

SEAOTTER

Sensor Embedded Autoencoding with One Time Transcode for Efficient Reconstruction

project page

paper

In robotics systems, vast amounts of visual data are easily captured at high resolution using low-cost, low-power hardware. Yet, limited bandwidth and on-device compute resources prevent full utilization when transmitted via conventional codecs like JPEG/MPEG. Newer codecs, like AV1/AVIF, improve the rate-distortion trade-off, but demand far more resources for encoding, impractical without custom ASICs. Recent asymmetric autoencoders deliver high quality under extreme power and bandwidth constraints, but add prohibitive decoding cost and use bespoke formats that ignore decades of infrastructure built around standards like JPEG. To address these limitations, we introduce a compression framework for cloud robotics based on a Sensor Embedded Autoencoder paired with a One-Time Transcode for Efficient Reconstruction (SEAOTTER). Because the sensor, cloud, and consumer stages face very different power and bandwidth budgets, SEAOTTER combines the compactness of a learned latent with the broad usability of a standard JPEG file. Since naive transcoding degrades performance, we propose a learnable JPEG color and quantization transform that enables increased accuracy for global, dense, and vision-language-based perception. Using SEAOTTER, we train both general-purpose and task-aware transcoding pipelines for a pre-trained, frozen encoder. At a compression ratio of 200:1 and compared to AVIF, we observe 7× faster encoding, 3.5× faster decoding, and +8% ImageNet top-1 accuracy, while retaining compatibility with JPEG infrastructure.

Overview of SEAOTTER design and workflow. Overview of SEAOTTER design and workflow.

Performance trade-offs of SEAOTTER variants vs other codecs. Performance trade-offs of SEAOTTER variants vs other codecs.

Code, pretrained models, and reproduction

  • src/seaotter/ — the seaotter v1.0.0 package (JPEG codec, learned color/quantization sandwich, fine-tunable pipeline, training recipes, encoder-throughput harness). Install with pip install seaotter==1.0.0 or pip install . from this repo.

  • Pretrained pipeline, one call:

    from seaotter import load_pipeline_from_hub
    pipe = load_pipeline_from_hub(subdir="seaotter_cls")  # headline ImageNet pipeline
    jpeg = pipe.transcode(image_uint8)   # cloud one-time transcode -> JPEG bytes
    rgb  = pipe.decode(jpeg)             # consumer steady-state decode -> uint8 RGB
  • results/ — every per-operating-point JSON behind the paper's figures and tables (results.md schema; TRACEABILITY.md number→file audit).

  • paper_figures/ — the generators that turn results/ into the paper figures/tables.

See REPRODUCE.md for installation, loading the pretrained models, the dataset list, and a full result→command map.

About

Sensor Embedded Autoencoding with One Time Transcode for Efficient Reconstruction

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors