From 8aae4b141389b0244456186bd1084cc9961c2ce0 Mon Sep 17 00:00:00 2001 From: Asad Iqbal Date: Mon, 11 May 2026 13:19:31 +0500 Subject: [PATCH] docs: refresh stale 'template coming soon' claims keypoint_detection and semantic_segmentation templates exist on tracebloc/data-ingestors develop (both with READMEs, scripts, sample data, sample CSVs) but three places on the docs site still claimed they were "coming soon" or "still in flight" and pointed users at support@tracebloc.io instead of the actual templates. - prerequisites.mdx: replace "Template coming soon" with [Example] links for both Keypoint Detection and Semantic Segmentation, matching the format used by image_classification and object_detection. - templates.mdx: add the 2 missing rows to the Available templates table; delete the "still in flight" sentence underneath. Grep `coming soon|still in flight|template.*soon` across develop returns zero hits after this change (the legitimate "if your use case isn't yet supported, contact us" fallbacks on prerequisites.mdx:6 and define.mdx:14,30 are different copy and stay). Closes #32 Co-Authored-By: Claude Opus 4.7 (1M context) --- create-use-case/prerequisites.mdx | 4 ++-- create-use-case/templates.mdx | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/create-use-case/prerequisites.mdx b/create-use-case/prerequisites.mdx index dde87bc..eeb166a 100644 --- a/create-use-case/prerequisites.mdx +++ b/create-use-case/prerequisites.mdx @@ -36,9 +36,9 @@ For object detection, images and annotations are automatically up- or downsized | Task | Input file type | Color mode | Supported image size | Label file type | Requirements | Links | |-----------------------|-----------------|--------------------------------------------------------------|----------------|-----------------------------------|----------------------------------------------|----------| | Classification | PNG, JPG, JPEG | rgb (3 channels) or grayscale (1 channel), 8-bit per channel | Square (height = width) | CSV | Uniform image size and file type per dataset | [Detailed structure](#image-classification)

[Example](https://github.com/tracebloc/data-ingestors/tree/develop/templates/image_classification) | -| Keypoint Detection | PNG, JPG, JPEG | rgb (3 channels) or grayscale (1 channel), 8-bit per channel | Square (height = width) | CSV | Uniform image sizes

Same number of keypoints per image and class | [Detailed structure](#image-keypoint-detection)

Template coming soon — contact [support@tracebloc.io](mailto:support@tracebloc.io) | +| Keypoint Detection | PNG, JPG, JPEG | rgb (3 channels) or grayscale (1 channel), 8-bit per channel | Square (height = width) | CSV | Uniform image sizes

Same number of keypoints per image and class | [Detailed structure](#image-keypoint-detection)

[Example](https://github.com/tracebloc/data-ingestors/tree/develop/templates/keypoint_detection) | | Object Detection | PNG, JPG, JPEG | rgb (3 channels) or grayscale (1 channel), 8-bit per channel | Square (height = width). Images and annotations will be resized to 448x448 px automatically | Pascal VOC | Uniform image sizes, one xml per image | [Detailed structure](#image-object-detection)

[Example](https://github.com/tracebloc/data-ingestors/tree/develop/templates/object_detection) | -| Semantic Segmentation | PNG, JPG, JPEG | rgb (3 channels) or grayscale (1 channel), 8-bit per channel | Square (height = width) | PNG, JPG, JPEG | Uniform image and mask sizes | [Detailed structure](#image-semantic-segmentation)

Template coming soon — contact [support@tracebloc.io](mailto:support@tracebloc.io) | +| Semantic Segmentation | PNG, JPG, JPEG | rgb (3 channels) or grayscale (1 channel), 8-bit per channel | Square (height = width) | PNG, JPG, JPEG | Uniform image and mask sizes | [Detailed structure](#image-semantic-segmentation)

[Example](https://github.com/tracebloc/data-ingestors/tree/develop/templates/semantic_segmentation) | ### Image Classification diff --git a/create-use-case/templates.mdx b/create-use-case/templates.mdx index f5028e5..5b95571 100644 --- a/create-use-case/templates.mdx +++ b/create-use-case/templates.mdx @@ -11,13 +11,15 @@ Each task tracebloc supports comes with a runnable data-ingestion template — a |---|---| | Image classification | [`templates/image_classification`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/image_classification) | | Object detection | [`templates/object_detection`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/object_detection) | +| Keypoint detection | [`templates/keypoint_detection`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/keypoint_detection) | +| Semantic segmentation | [`templates/semantic_segmentation`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/semantic_segmentation) | | Text classification | [`templates/text_classification`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/text_classification) | | Tabular classification | [`templates/tabular_classification`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/tabular_classification) | | Tabular regression | [`templates/tabular_regression`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/tabular_regression) | | Time series forecasting | [`templates/time_series_forecasting`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/time_series_forecasting) | | Time-to-event prediction | [`templates/time_to_event_prediction`](https://github.com/tracebloc/data-ingestors/tree/develop/templates/time_to_event_prediction) | -Keypoint detection and semantic segmentation are supported, but ready-made templates are still in flight — contact [support@tracebloc.io](mailto:support@tracebloc.io) for guidance in the meantime. See [Prerequisites](/create-use-case/prerequisites) for the full list of supported tasks and required data formats. +See [Prerequisites](/create-use-case/prerequisites) for the full list of supported tasks and required data formats. ## How to use a template