Exporting Data
Everything Gaard produces can leave the platform. This guide covers the three export paths: CSV reports for analysis, datasets for machine learning, and annotated video for evidence.
CSV export
Section titled “CSV export”A CSV report is a spreadsheet-friendly snapshot of results, suited to reporting, auditing, and offline analysis. You can export from two places, depending on what you want:
- From the review workspace: exports the classifications matching your current filters and time range. Set up the view you want first (see Search & Filtering), then export.
- From the Labels view: exports the labels your team has recorded (see Labeling & Feedback).
-
Open the actions menu in the review workspace or the Labels view.
-
Select Generate a CSV report.
-
Confirm Generate in the dialog. The report is built server-side and the download starts automatically when it is ready.
Dataset export
Section titled “Dataset export”A dataset packages labeled clips and their metadata into a single archive (tar format), ready to feed into a machine-learning workflow. Unlike a CSV (which is just tabular data) a dataset bundles the underlying material.
Dataset generation runs as a background job because it can take time to assemble.
-
In the Labels view, open the actions menu and select Generate a dataset.
-
Confirm Generate. A new job appears in the list and reports its progress as it runs.
-
When the job is Done, select its filename to download the archive.
Dataset jobs persist in the list, so you can start a large export, leave the page, and come back to download it once it has finished.
Downloading annotated video
Section titled “Downloading annotated video”The annotated video is the highlight clip for a classification with the model’s detections drawn on it as bounding boxes: the same footage you see in the review player. It is the most useful artifact to hand to a colleague or attach to an incident, because it shows what Gaard detected and where.
Retrieve it from the API with the classification’s classify_id:
curl https://vision.gaard.ai/api/video/annotate/66436fc66d24ab9cf81140eb \ -H "Authorization: Bearer $API_KEY" \ -o annotated.mp4For the full endpoint reference, see Endpoints.