Skip to main content

TLabel

A Unified Annotation Framework for Cross-Sensor Tactile Manipulation Data

PyPI Tests License: MIT Downloads 中文文档

TLabel is the first cross-sensor tactile annotation schema with capability declarations and Compliance Level stratification. It enables heterogeneous tactile sensors — regardless of operating principle — to produce compatible 14-dimensional semantic annotations while preserving their unique strengths.

TL;DR — The Unicode for tactile data: one standard schema, every sensor.

Why TLabel?

Tactile datasets today ship as raw sensor signals without semantic annotations. Each sensor type demands its own ad-hoc processing, and results from different sensors cannot be compared or fused. TLabel addresses this by:

  • Standardizing annotations at the semantic level — 14 dimensions covering spatial, mechanical, surface, dynamic, and meta perceptions
  • Declaring capabilities — each sensor adapter explicitly states which dimensions it can and cannot annotate
  • Stratifying compliance — Compliance Level (L1–L4) ensures every sensor participates at its appropriate information density
  • Enabling cross-sensor comparison through a shared output format

Quick Start

Install

pip install tlabel

Load and explore data

import tlabel

# Load tactile data (auto-detects sensor format)
data = tlabel.load("path/to/sensor_data.pkl")

# Or try the built-in demo — no files needed
data = tlabel.demo("gelsight")

# Inspect annotation metadata
print(data.describe())
# -> {'num_frames': 500, 'sensor': 'gelsight', 'compliance_level': 'L2', ...}

Interactive annotation (Jupyter)

# Open the bilingual annotation panel (Chinese / English)
data.review()

Export to training formats

# JSON / CSV for analysis
data.export("output.json")

# FTP-1 Zarr for foundation model training
data.export_ftp1("output.zarr")

# LeRobot format
from tlabel.converters import tlabel_to_lerobot
tlabel_to_lerobot("annotations.json", "lerobot_episode/")

CLI

tlabel list                       # List all registered adapters
tlabel info gelsight              # Adapter details & compliance level
tlabel validate data.json         # Schema compliance check

Install optional dependencies

pip install tlabel[gelsight]      # GelSight / DIGIT (.pkl)
pip install tlabel[paxini]        # PaXini PXCap (.h5)
pip install tlabel[daimon]        # Daimon DM-TacClaw (.parquet)
pip install tlabel[ftp1]          # FTP-1 export (zarr)
pip install tlabel[all]           # Everything

Schema V2 — 14 Dimensions, 4 Compliance Levels

TLabel Schema V2 defines 14 semantic dimensions, with Compliance Levels (L1–L4) indicating annotation completeness:

# Dimension Type Required
1 contact bool ✅ Required
2 contact_centroid [float × 2] ✅ Required (when contact)
3 force_magnitude float ✅ Required (L2+)
4 slip_event bool ✅ Required
5 confidence float ✅ Required
6 compliance_level L1 / L2 / L3 / L4 ✅ Required
7 contact_region enum Optional
8 force_vector [float × 3] Optional (L3+)
9 torque_vector [float × 3] Optional
10 slip_velocity [float × 2] Optional
11 manipulation_phase enum Optional
12 texture_class enum Optional
13 object_deformation float Optional
14 temperature float Optional

Compliance Levels

Level Name Required Fields Example Sensors
L1 Basic Tactile contact, contact_centroid, slip_event, confidence Single-point resistive, proximity
L2 Force-Aware L1 + force_magnitude Paxini, YCB-Slide, GelSight
L3 Full-Vector L2 + force_vector ToucHD, calibrated DM-TAC
L4 Rich-Semantic L3 + all optional fields BioTac, next-gen multimodal

Capability declarations are the core innovation: each adapter declares which of the 14 semantic dimensions it can and cannot annotate. Only supported fields appear in the output. No forced alignment, no data fabrication.

Supported Sensors

Dataset Adapters (offline data loading)

Sensor Type Format Level
GelSight Mini / DIGIT Visuo-tactile .pkl L3
Daimon DM-TacClaw Multimodal .parquet L3
PaXini PXCap Force array .h5 L2
UniVTAC Visuo-tactile .hdf5 L3
TacQuad (AnyTouch) Multi-sensor directory L3
VTouch Visuo-tactile .h5 L3
YCB-Slide Visuo-tactile .npy L3

Real-time Sensor Adapters (hardware)

Sensor Type Connection Level
PaXini GEN3 Force array SDK L2
Daimon DM-Tac Visuo-tactile USB / .avi L3

Architecture

┌─────────────────────────────────────────────────┐
│  Layer 1: Schema                                │
│  14 semantic dimensions + Compliance Level L1-L4│
├─────────────────────────────────────────────────┤
│  Layer 2: Adapters                              │
│  DataAdapterBase │ SensorAdapterBase             │
│  (7 built-in + community-extensible)            │
├─────────────────────────────────────────────────┤
│  Layer 3: Downstream                            │
│  Feature derivation · Augmentation · Export      │
│  PredictEngine · FTP-1 · LeRobot · RLDS · ROS2 │
└─────────────────────────────────────────────────┘
  • DataAdapterBase — subclass to add file-based sensor support (~30 min)
  • SensorAdapterBase — subclass to add real-time hardware support
  • Both share the unified export pipeline

Export Formats

Format Purpose Usage
JSON / CSV General analysis data.export("out.json")
FTP-1 Zarr Foundation model training data.export_ftp1("out.zarr")
LeRobot LeRobot framework tlabel_to_lerobot(src, dst)
RLDS RLDS/TFDS pipeline converters.rlds module
ROS2 Robot runtime Stub (coming soon)

Key Results

Metric Result
Schema 14 semantic dimensions + Compliance Level (L1–L4)
Schema version v2.1.0
Hard errors across 750K+ observations 0
Cross-scenario generalization accuracy +7.93% (p=0.029)
Slip-risk detection F1 +10.35% (p<0.001)
Sensors validated Daimon-Infinity (GelSight) + PaXini PXCap (6D Hall-effect) + DIGIT (visuo-tactile)

Documentation

Document Description
TLabel Format Spec Complete annotation schema specification
Annotation Spec Annotation methodology and guidelines
Design Document Core design decisions and architecture
中文文档 Chinese version of this README

Contributing

TLabel is designed to be extensible. Add your sensor in ~30 minutes:

  1. Fork contrib/adapter-template/
  2. Subclass DataAdapterBase or SensorAdapterBase
  3. Submit a PR or publish as a standalone package

See CONTRIBUTING.md for details.

Paper

TLabel: A Unified Annotation Framework for Cross-Sensor Tactile Manipulation Data

Xi Luo, Sheng Wu (Niuxu Tech)

[PDF]

LaTeX source available in paper/.

Validation

TLabel has been validated on three sensors with fundamentally different physics:

Sensor Type Episodes Tasks Hard Errors Compliance Level
Daimon-Infinity Vision-based GelSight 94 6 0 L2
PaXini PXCap 6D Hall-effect array 15 7 0 L2
DIGIT Visuo-tactile 12 4 0 L2

License

This project is licensed under the MIT License — see LICENSE for details.

The TLabel Format specification is free to implement by anyone. We encourage the community to build adapters for additional sensors.

Acknowledgments

TLabel builds on insights from the tactile sensing community, including Open X-Embodiment, LeRobot, and OpenTouch.


TouchLabel AI — Tactile Data Annotation Infrastructure
GitHub · PyPI · Discord
Niuxu Tech · Hangzhou, China

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tlabel-0.20.1.tar.gz (264.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tlabel-0.20.1-py3-none-any.whl (291.6 kB view details)

Uploaded Python 3

File details

Details for the file tlabel-0.20.1.tar.gz.

File metadata

  • Download URL: tlabel-0.20.1.tar.gz
  • Upload date:
  • Size: 264.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for tlabel-0.20.1.tar.gz
Algorithm Hash digest
SHA256 ece42d444ca87c557d3ddf1ff1fa5d22e480507643092369affc1bae8e6ff641
MD5 dad1df496ae1cf736f65732a789d4eaf
BLAKE2b-256 7b9f215d9d7fc415b7e624d134436975e22271995d5dd09309ad1a8798e44ec2

See more details on using hashes here.

File details

Details for the file tlabel-0.20.1-py3-none-any.whl.

File metadata

  • Download URL: tlabel-0.20.1-py3-none-any.whl
  • Upload date:
  • Size: 291.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for tlabel-0.20.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f3a58ab14fd08056669ab10001d579e4156ca3ae1501302d55c14a9dc0841c46
MD5 c3eeaa481f74ce4e800c869a603d183e
BLAKE2b-256 aa2589e0822eaf4c220b8e02de7f7936c49c1819097f8a336feed63b6bed94f1

See more details on using hashes here.

Release history Release notifications | RSS feed

0.23.1

2 files

0.23.0

2 files

0.22.4

2 files

0.22.3

2 files

0.22.2

2 files

0.22.1

2 files

0.22.0

2 files

0.21.1

1 file

0.21.0

2 files

This release

0.20.1 This release

2 files

0.20.0

2 files

0.19.0

2 files

0.18.2

2 files

0.18.1

2 files

0.18.0

2 files

0.17.3

2 files

0.17.2

2 files

0.17.1

2 files

0.17.0

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.1

2 files

0.13.0

2 files

0.12.4

2 files

0.12.3

2 files

0.12.2

2 files

0.12.1

2 files

0.12.0

2 files

0.11.2

2 files

0.11.1

2 files

0.11.0

2 files

0.10.3

2 files

0.10.2

2 files

0.10.1

2 files

0.10.0

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page