- You are registered as a user on the tracebloc platform
- You have a client deployed using kubernetes either locally or in the cloud
- Your dataset is cleaned and preprocessed
- You are familiar with the supported data types and tasks
- Preparing and ingesting the dataset
- Defining the use case
- Setting evaluation metrics
- Evaluating models
Supported Data Types and Tasks
Image Data
Requirements for all image data tasks: Uniform image sizes and uniform file types. For example all images as 256x256 rgb .jpg files. Convert files if necessary and in case your images do not fit the supported size, crop or resize accordingly.Filenames in the label CSV: For all image and text tasks, the
filename column in the label CSV must not include the file extension (e.g. use cat01, not cat01.jpg). The extension is configured once on the ingestor side via file_options.extension in the template and applied to every row at ingestion time.Image Classification
filename column must not include the file extension. Set the expected extension once via file_options.extension in the ingestor template.
Image Keypoint Detection
The number of keypoints per class and per image must be fixed. For example, in a person/car keypoint detection project, both classes must define the same keypoints, and every image must contain the full set for its class. You cannot mix classes with different keypoint counts (e.g., 16 for person and 32 for car) or annotate some images with fewer keypoints for the same class.- X and Y determine the X-/Y-coordinates of a keypoint
- Visibility indicates whether a keypoint is visible in the image or not: 0 = not visible (point outside the image or point is in the image but occluded), 1 = visible
- Filename should not include the file extension.
Image Object Detection
The filename like “street01.png” specifies the link between images and annotations. XML-file annotations are in Pascal VOC format. The labels.csv contains a global list of all images and objects. Currently, the images and annotations are resized to 448x448 pixels.filename column links each row to its image and to the matching XML annotation file. The image_label column holds the class name for each object instance — one row per object. Filenames should not include the file extension.
Image Semantic Segmentation
Each mask is an rgb image whose pixel values map to classes defined in labels.csv. The labels.csv contains a global list per image and class. All masks must exactly match their corresponding image sizes and file names. For binary segmentation (two classes), provide a single-channel grayscale mask where background pixels are black (0) and foreground pixels are white (255). For three or more classes, supply an RGB mask where each class is represented by a unique color (or pixel value). The filename should not include the file extension.Tabular Data
Requirements for all tabular data tasks: Each dataset must be provided as a single CSV file with a header row. Every column must contain uniform data types, for example numeric values for features and a categorical or alphanumeric column for labels. Use UTF-8 encoding with comma separators and validate that your schema matches the expected types. Invalid rows are skipped by the ingestor.Tabular Classification
Include a header row with clear column names, using a dedicated column for the labels. Anid column is recommended but not required.
Tabular Regression
Same structure as Tabular Classification, but the label column holds a continuous numeric target (not a class).Time Series Forecasting
Provide a single CSV with a timestamp column, one or more numeric feature columns, and the numeric target column you want to forecast. Rows must be ordered by time and use a consistent timestamp format.Time to Event Prediction
Provide a single CSV with feature columns, atime column (duration to event or censoring), and a binary event column (1 = event occurred, 0 = censored).
Text Data
Text Classification
Thefilename column must not include the file extension. The extension is set once via file_options.extension in the ingestor template (e.g. FileExtension.TXT).
file example
Next Steps
- Prepare and ingest your dataset: Prepare Data
Need Help?
- Email us at [email protected]