Project Objects
encord.project.Project class instead.
A project defines a label ontology and is a collection of datasets and label rows.
ORM:
- title,
- description,
- editor_ontology,
- ontology_hash,
- datasets::
- label_rows::
- annotation_task_status
get_labels_list
label_hash is found,
a None value is appended. This can be useful for working with fetching additional label row data via
:meth:encord.project.Project.get_label_rows for example.
workflow_manager_uuid
WrongProjectTypeError if the project is not a workflow project.
CopyDatasetAction Objects
ATTACH
Attach the datasets associated with the original project to the copy project.CLONE
Clone the data units from the associated datasets into a new dataset an attach it to the copy project.CopyDatasetOptions Objects
action
One ofCopyDatasetAction.ATTACH or CopyDatasetAction.CLONE. (defaults to ATTACH)
datasets_to_data_hashes_map
A dictionary of{ <dataset_hash>: List[<data_unit_hash>]}.
When provided with a CLONE action this will filter the copied data units.
When combined with CopyLabelsOptions, only labels from specific data units will be copied.
CopyLabelsOptions Objects
accepted_label_hashes
A list of label hashes that will be copied to the new projectaccepted_label_statuses
A list of label statuses to filter the labels copied to the new project, defined inReviewApprovalState
CopyProjectPayload Objects
ManualReviewWorkflowSettings Objects
BenchmarkQaWorkflowSettings Objects
source_projects
For Benchmark QA projects, a list of project ids (project_hash-es) that contain the benchmark source dataProjectWorkflowSettings
A variant type that allows you to select the type of quality assurance workflow for the project, and configure it. Currently one of: :class:ManualReviewWorkflowSettings: a workflow with optional manual reviews
:class:BenchmarkQaWorkflowSettings: annotators are presented with ābenchmarkā or āhoneypotā data
ReviewMode Objects
CvatReviewMode Objects
CvatImportGetResultResponse Objects
statusCvatImportGetResultLongPollingStatus - Import status (āDONEā, āERRORā, āPENDINGā)project_uuidOptional[UUID] - Created project ID. Only present when status=āDONEāissuesOptional[Dict] - Import issues. Present for āDONEā (warnings) or āERRORā (failures)

