Data-collection logging (MCAP over Zenoh) and detection-dataset tooling (YOLO / RF-DETR) for the Telekinesis SDK.
Project description
GitHub • LinkedIn • X • Discord
Telekinesis Data Engine
Telekinesis Data Engine turns real-world, online-collected robot and perception data into standard, trainable datasets within the Telekinesis ecosystem.
Features
It includes:
- MCAP logging: capture every publisher on the Zenoh network into a single self-describing
.mcapfile, and read it back into live objects - Detection-dataset logging: write labelled frames straight to a trainable YOLO (Ultralytics) or RF-DETR (COCO) dataset, with automatic train/val/test routing
- Decoupled pub/sub writers so disk I/O never stalls the capture loop
- Lossless conversion and merging between the YOLO and COCO / RF-DETR layouts
- FiftyOne-based visualization of detection datasets
Requirements
Current support for Python versions - 3.10, 3.11, 3.12.
Note
- Telekinesis Data Engine is currently in its early development phase (pre-1.0).
- There will be continuous version updates which introduce new features and optimizations. To have the latest features, please always install or upgrade to the latest version of the package.
Installation
pip install telekinesis-dataengine
Example
Run a sample python code to quickly test your installation.
-
Create a
Pythonfile nameddataengine_example.pyin a directory of your choice, and copy paste the below:import numpy as np from telekinesis.dataengine import DetectionLogger # Create a logger that writes an Ultralytics YOLO dataset. # categories=None builds the class table dynamically from what you log. logger = DetectionLogger.create("yolo", "results/demo_dataset", mode="overwrite") # A labelled frame: a raw image (HxWxC) + COCO-style boxes [x, y, w, h]. image = np.zeros((480, 640, 3), dtype=np.uint8) annotations = [{"category_id": 0, "bbox": [100, 120, 80, 60]}] logger.log(image, annotations) # auto-routed 80/10/10 across train/val/test logger.close() # writes images/, labels/, and data.yaml print("Dataset written to results/demo_dataset")
-
On a terminal, navigate to the directory where
dataengine_example.pywas created, and run:python dataengine_example.pyExpected output:
Dataset written to results/demo_dataset
Swap
"yolo"→"rfdetr"to emit a COCO dataset instead — the call sites stay the same.
You are now set up with Telekinesis Data Engine.
Resources
-
Examples Runnable usage examples for the Telekinesis SDK: Telekinesis Examples
-
Documentation Full SDK documentation and usage details: Telekinesis Documentation
-
Development Building, testing, and contributing to this package: DEVELOPMENT.md
Support
For issues and questions:
- Create an issue in the GitLab repository.
- Contact the Telekinesis development team at support@telekinesis.ai or on Discord.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file telekinesis_dataengine-0.0.2.tar.gz.
File metadata
- Download URL: telekinesis_dataengine-0.0.2.tar.gz
- Upload date:
- Size: 31.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd5aa76ec511ffa65ca84dea6990ca6755d7a558b32bb5846ea16e022a0a0f89
|
|
| MD5 |
e19898c0b5b54a0d832b9bed69b57b60
|
|
| BLAKE2b-256 |
d4e7be6757b302cdae01618cc3d281cebb431fbb0d6d1cd9e969bfcab2884b3f
|
File details
Details for the file telekinesis_dataengine-0.0.2-py3-none-any.whl.
File metadata
- Download URL: telekinesis_dataengine-0.0.2-py3-none-any.whl
- Upload date:
- Size: 32.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d78a64db6b02a308de085fbddc935945946ba4332105076129f763bfef9b251c
|
|
| MD5 |
65644d51e3f2d235cb800b29549232c2
|
|
| BLAKE2b-256 |
01f7edb3697abc5fcd9766a1370fff572ad3b8cdcb0348104f24f011dde94f64
|