Stage Export
Overview
The Stage Export plugin is an export plugin that downloads workflow-stage activity and annotation-count information for your project.
Use this plugin when you need a CSV report showing which stages a task passed through, who labeled or reviewed it, how long work took, and how many labels were present at each stage.

Stage Export
Plugin Functionality
The Stage Export plugin creates a ZIP file containing a CSV report for the selected tasks.
The export includes:
Batch
Stage
External ID
Task ID
Labeler and reviewer names by stage
Labeling and review dates, start times, end times, and durations
Review task status by review stage
Number of pages
Counts of classifications, tools, tool classifications, and relations by stage
Optional classification answer columns by stage
When both gold_stage and evaluation_stage are provided, the plugin also adds label comparison metrics between the two stages, including accepted labels, fixed labels, precision, recall, and accuracy.
Plugin Configuration
From the Stage Filter field, pick the stages containing the tasks you'd like to export. Similarly, from the Batch Filter field, you may select one or more batches. By default, all tasks are exported from all batches.
If you wish to receive an email when the export is complete, toggle Send Email on.
You may vary a number of settings related to your export from the Config JSON field. Each option is detailed below:
"start_date": Start date for filtering stage history included in the export (YYYY-MM-DD).
Example:
"start_date": "2020-12-31"
"end_date": End date for filtering stage history included in the export (YYYY-MM-DD).
Example:
"end_date": "2021-12-31"
"duration_unit": Unit used for duration columns.
Example:
"duration_unit": "sec"
"gold_stage": Optional stage used as the reference stage for comparison metrics.
Example:
"gold_stage": "Review"
"evaluation_stage": Optional stage evaluated against the gold stage.
Example:
"evaluation_stage": "Label"
"ignored_schema_ids": List of schema IDs to exclude from the stage comparison metrics.
Example:
"ignored_schema_ids": ["12345", "12346"]
"include_key_frames_only": Included in the default configuration for consistency with video export plugins. The Stage Export plugin exports stage and annotation-count data from the selected export scope.
Example:
"include_key_frames_only": true
"logging_frequency": Defines how frequently progress logs are displayed; setting this value to 0 disables progress-frequency logging.
Example:
"logging_frequency": 0
"logging_frequency": 100
Last updated