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