Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions create-use-case/prerequisites.mdx
Original file line numberDiff line numberDiff line change
Expand Up@@ -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) <br></br>[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 <br></br> Same number of keypoints per image and class | [Detailed structure](#image-keypoint-detection) <br></br>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 <br></br> Same number of keypoints per image and class | [Detailed structure](#image-keypoint-detection) <br></br>[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) <br></br>[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) <br></br>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) <br></br>[Example](https://github.com/tracebloc/data-ingestors/tree/develop/templates/semantic_segmentation) |

### Image Classification

Expand Down
4 changes: 3 additions & 1 deletion create-use-case/templates.mdx
Original file line numberDiff line numberDiff line change
Expand Up@@ -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

Expand Down
Loading