Datasets
Upload, manage, and query synthetic training datasets. Lucitra accepts data in COCO, KITTI, nuScenes, or custom formats and stores it on Google Cloud Storage with signed upload URLs.Supported Formats
COCO
Object detection, instance segmentation, and keypoints. The most common format for 2D vision tasks.
KITTI
3D bounding boxes, point clouds, and stereo pairs. Standard for autonomous driving benchmarks.
nuScenes
Multi-sensor, multi-frame sequences with ego pose. Designed for full autonomous driving stacks.
Custom
Bring your own annotation schema. Define a format adapter and Lucitra handles the rest.
Create a Dataset
Creating a dataset returns a time-limited signed URL for uploading your data file directly to cloud storage.1
Create the dataset record
Send a
POST request with your project ID, dataset name, format, and optional metadata.2
Upload your data file
Use the signed URL from the response to upload your dataset archive via a
PUT request.Request Body
string
required
The project this dataset belongs to.
string
required
A human-readable name for the dataset.
string
required
Annotation format. One of
coco, kitti, nuscenes, or custom.object
Arbitrary key-value pairs for tracking simulator version, scene parameters, or any other context.
List Datasets
Retrieve all datasets belonging to a project with pagination support.string
required
Filter datasets to this project.
integer
default:"20"
Maximum number of datasets to return.
integer
default:"0"
Number of datasets to skip for pagination.
Response
Response
Get a Single Dataset
Retrieve full details for a specific dataset by ID.Response
Response
string
required
Unique dataset identifier.
string
required
The project this dataset belongs to.
string
required
Human-readable dataset name.
string
required
Internal Google Cloud Storage path where the data is stored.
string
required
Annotation format:
coco, kitti, nuscenes, or custom.integer
required
Number of scenes detected in the dataset after upload processing.
integer
required
Total size of the uploaded file in bytes.
object
User-provided metadata from dataset creation.
string
required
ISO 8601 timestamp of when the upload completed.