Project Level SDK Functions
v 1.3.20
imerit_ango.sdk.SDK.
add_members_to_project(project_id, members, role)
Add specific users to a project.
Parameters:
project_id: string
ID of the project where the attachment will be created. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
members: List[str]
A list of emails of the user(s) you wish to add to the project.
Example:
["user1@test.com", "user2@test.com"]
role: imerit_ango.models.enums.ProjectRoles
The role in which you would like to add the user(s) to the project.
ProjectRoles
{Manager, Labeler, Reviewer, Lead}
Example:
ProjectRoles.Labeler
(Note: you must import the enum containing the roles using
from imerit_ango.models.enums import ProjectRoles
)
Returns:
output: dict
Example:
assign_batches(project_id, asset_ids, batches)
Assign specific asset(s) to specific batches.
Parameters:
project_id: string
ID of the project where the attachment will be created. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
asset_ids: List[str]
List of asset IDs to assign to batches. Asset IDs can be obtained from the UI, or from get_assets.
Example:
['0000000aa0a00a0000aaaa0a', '0000000aa0a00a0000aaaa0b']
batches: List[str]
List of batches to which assets will be assigned.
You can choose to pass either a list of batch names or a list of batch IDs. Batch names and batch IDs can be obtained with get_batches.
Example:
['Batch-1', 'Batch-2']
or['0000000aa0a00a0000aaaa0a', '0000000aa0a00a0000aaaa0b']
Returns:
output: dict
Example:
Outputs:
Where "assets" is the number of assets successfully assigned to the batch(es).
See also
assign_task(project_id, task_ids, stage_filter, email)
Assign a task to a specific user with email.
Parameters:
project_id: string
ID of the project where the attachment will be created. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
task_ids: list
A list of task IDs to be assigned. Task IDs can be obtained from the UI, and from get_tasks.
Example: [
'0000000aa0a00a0000aaaa0a', '0000000bb0b00b0000bbbb0b'
]
stage_filter: string
ID of the stage on which the assignee will work.
Example:
"206f2f63-ac2d-4458-92d8-b84fd7264db3"
or, in the case of the default labeling stage,"Label"
.
email: string
Mail address with which the user is to be assigned the task to register.
Example:
'lorenzo@example.com'
Returns:
output: dict
Example:
See also
create_attachment(project_id, attachments)
Add attachments to assets in a project—more on attachments and uploading them here.
Parameters:
project_id: string
ID of the project where the attachment will be created. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
attachments: List[dict]
List of attachments to attach to existing assets. Attachments are dictionaries containing information about the asset the attachment will be attached to, the type of attachment, and the content of the attachment.
Example attachment parameter with 3 attachments being attached to 2 assets:
Attachments can have one of the types "IMAGE", "TEXT", or "VIDEO".
For IMAGE and VIDEO, you will need to provide a link to the resource. JPG, PNG, and MP4 are supported.
For text, you will need to provide the text that will be attached.
For image and video attachments, you may provide links to assets in private buckets, provided that you've connected them to Ango Hub. More information on how to do so can be found in the Attachments page.
In AWS S3, if your attachment URL does not contain region information, your attachments may not be visible. When using S3, please ensure the region information is contained in the URL right after the bucket name, like so:
Returns:
output: dict
Example:
create_batch(project_id, batch_name)
Create batches in a specific project.
Parameters:
project_id: str
ID of the project where the batch will be created. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
batch_name: str
Name of the batch to be created.
Example:
'My Batch 1'
Returns:
output: dict
Example:
Prevent creating duplicate batches:
See also
create_issue(task_id, content, position)
Opens an issue to the specified task, with given content on the given position.
Parameters:
task_id: string
ID of the task to be assigned. Task IDs can be obtained from the UI and from get_tasks.
Example:
'0000000aa0a00a0000aaaa0a'
content: string
Text content of the issue.
Example:
'The bounding box here should reach the edges.'
position: List[integer]
Position, in pixel, of where the issue should be placed on the image asset.
Example:
[25, 15]
Returns:
output: dict
Example:
See also
create_label_set(project_id, tools, classifications, relations, raw_category_schema)
Create and set the project's ontology.
As this method is more complex than others, we recommend also consulting the examples at the end of this section.
Parameters:
project_id: string
ID of the project where the label set will be created. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
tools: List[ToolCategory], optional
List of tools that will be added to the label set.
Example:
[ToolCategory(Tool.Segmentation, title="SegmentationTool")]
classifications: List[ClassificationCategory], optional, default None
List of classifications that will be added to the label set.
Example:
[ClassificationCategory(Classification.Single_dropdown, title = "Choice", options=[LabelOption("First"), LabelOption("Second")])]
relations: List[RelationCategory], optional, default None
List of relations that will be added to the label set.
Example:
[RelationCategory(Relation.Single, title="SingleRelationTool")]
raw_category_schema: Dict, optional, default None
Instead of creating the label set (category schema) using the previous 'tools', 'classifications', and 'relations' parameters, you may pass here a dictionary representing the entire category schema.
See the section below for an example.
To get an example of what can be passed as the raw_category_schema
, there are two ways:
Using the SDK itself, get the category schema from another existing project. This will also allow you to programmatically copy the category schema between two projects, like so:
As an example, a raw_category_schema
obtained from a project could be this:
Label Set Classes
ToolCategory: {Segmentation, Polyline, Polygon, Rotated_bounding_box, Ner, Point, Pdf}
ToolCategory Parameters:
tool: Tool
The tool type. ex.:
Tool.Segmentation
title: string, default ""
The title of the tool.
required: bool, default None
Whether annotators are required to draw at least one instance of this tool.
schemaId: string, default None
Sets the tool's schemaId.
columnField: bool, default False
Whether this tool should be a table column.
color: string, default ""
The color assigned to this labeling tool, in the format "#FFFFFF"
shortcutKey: string, default ""
The shortcut to quickly select this tool, "0"-"9", "ctrl+0"-"ctrl+9", "a"-"k"
classifications: List[ClassificationCategory], default []
List of nested classifications, if any
options: List[LabelOption], default []
The tool's answers (options.)
ClassificationCategory: {Multi_dropdown, Single_dropdown Tree_dropdown, Radio, Checkbox, Text, Instance}
ClassificationCategory Parameters:
classification: Classification
The classification type. ex.:
Classification.Tree_dropdown
title: string, default ""
The title of the classification.
required: bool, default None
Whether annotators have to answer this classification or not.
schemaId: string, default None
Sets the classification's Schema ID.
columnField: bool, default False
Whether this classification should be a table column.
color: string, default ""
The color assigned to this labeling tool, in the format "#FFFFFF"
shortcutKey: string, default ""
The shortcut to quickly select this tool, "0"-"9", "ctrl+0"-"ctrl+9", "a"-"k"
classifications: List, default [ClassificationCategory]
List of nested classifications, if any
options: List[LabelOption], default []
The classification's answers (options.)
treeOptions: List[TreeOption], default []
For trees, the tree's leaves/branches.
parentOptionId: string, default ""
The schema ID of the parent option. That is, the option that the labeler needs to select in order for this classification to appear. Enables conditional nesting.
richText: bool, default False
Set to True to enable the Rich Text editor for the selected text classification tool.
RelationCategory: {Single, Group}
RelationCategory Parameters:
relation: Relation
The classification type. ex.:
Relation.Single
title: string, default ""
The title of the relation.
required: bool, default None
Whether annotators have to include at least one such relation in order to submit their annotation.
schemaId: string, default None
Sets the schemaId of the relation.
columnField: bool, default False
Whether this relation should be a table column.
color: string, default ""
The color assigned to this relation, in the format "#FFFFFF"
shortcutKey: string, default ""
The shortcut to quickly select this relation, "0"-"9", "ctrl+0"-"ctrl+9", "a"-"k"
classifications: List[ClassificationCategory], default []
List of nested classifications, if any
options: List[LabelOption], default []
The relation's answers (options.)
LabelOption parameters:
value: string
The text of the answer (option.)
schemaId: string, default None
The schema ID of the option. Necessary for conditional nesting.
Returns:
output: dict
Examples:
Creating an ontology with:
A Single Dropdown classification, with two choices named "First" and "Second":
Creating an ontology with:
A Single Dropdown classification with the classifications "First" and "Second"
A Segmentation tool called "SegmentationTool"
A Single Relation called "SingleRelationTool"
Creating an ontology with:
A Single Dropdown classification called "Entity Type" with the choices "Vehicle" and "Person"
Another Single Dropdown classification nested inside the first unconditionally (that is, any choice in the first dropdown will open this second) named "Position" with the choices "On Road" and "Off Road".
Creating an ontology with:
A Tree Dropdown tool with:
A root
With a "tree0" branch
With a "subtree0" leaf
With a "subtree1" leaf
With a "tree1" leaf
Creating an ontology with:
A radio classification tool with two possible answers, "Radio Option 1" and "Radio Option 2"
A conditionally nested Text classification tool using the rich text editor, which only appears if the labeler clicks on "Radio Option 1" (here,
parentOptionId
links the text tool to the option which reveals it)
Creating an ontology with:
A radio classification tool with the possible answers "Radio Answer 1" and "Radio Answer 2"
A Tree Dropdown classification tool which only appears if the annotator clicks on "Radio Answer 1"
The Tree Dropdown has a main root
With a branch called "Branch 1"
With leaves called "Leaf 1" and "Leaf 2"
With a leaf called "Leaf 3"
create_project(name, description)
Creates a new project.
Parameters:
name: string
The name of the project to be created. This field cannot be empty.
Example:
'Project One'
description: string, optional, default ""
Example:
'Vehicle Classification Project'
Returns:
output: dict
Example:
Returns:
See also
delete_issue(project_id, issue_id)
Delete the issue specified with issue_id
Parameters
project_id: string
ID of the project which will be exported. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
issue_id: string
ID of the issue to be deleted
Returns:
output: dict
Example
export(project_id, batches, stage, export_format, export_type, include_key_frames_only, zip_file_path, filters)
Export annotated assets together with labels and metadata. Use assignee, completed_at, updated_at or batch filters to export specific parts of the dataset.
Parameters:
project_id: string
ID of the project which will be exported. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
batches: List[string], optional, default None
You may choose to only export assets pertaining to one or more specific batches.
Example:
['0000000aa0a00a0000aaaa0a']
stage: List[string], optional, default None
You may choose to only export assets pertaining to one or more specific stages.
Example:
['Complete']
export_format: string, default "json", {"json", "ndjson"}
Select the format of the export output
Example: "
ndjson"
export_type: string, optional, default None, {"issue"}
You may choose to only export issues by passing
export_type="issue"
.
include_key_frames_only: bool, default False
You may choose to only export key frames for video assets.
zip_file_path: string, optional, default None
If included, the export will be directly downloaded as a .zip file instead of being returned as a Python dictionary. This prevents our server from having to unzip and dict-ify the export, reducing loading times.
Example:
"/Users/lorenzo/Downloads/my_export.zip"
filters: Dict{string:string}
You may filter the export by including a filters dict here.
If you do not include it, by default, the export will not be filtered and it will contain all information.
Here is what you can include in the filters dict (picking true or false as necessary):
Returns:
output: dict
Example:
See also
exportV3(project_id, batches, stage, export_format, export_type, include_key_frames_only, zip_file_path, filters)
Export annotated assets together with labels and metadata. Use batch or stage filters to export specific parts of the dataset.
Parameters:
project_id: string
ID of the project which will be exported. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
batches: List[string], optional, default None
You may choose to only export assets pertaining to one or more specific batches.
Example:
['0000000aa0a00a0000aaaa0a']
stage: List[string], optional, default None
You may choose to only export assets pertaining to one or more specific stages.
Example:
['Complete']
export_format: string, default "json", {"json", "ndjson"}
Select the format of the export output
Example: "
ndjson"
export_type: string, optional, default None, {"issue"}
You may choose to only export issues by passing
export_type="issue"
.
include_key_frames_only: bool, default False
You may choose to only export key frames for video assets.
zip_file_path: string, optional, default None
If included, the export will be directly downloaded as a .zip file instead of being returned as a Python dictionary. This prevents our server from having to unzip and dict-ify the export, reducing loading times.
Example:
"/Users/lorenzo/Downloads/my_export.zip"
filters: Dict{string:string}
You may filter the export by including a filters dict here.
If you do not include it, by default, the export will not be filtered and it will contain all information.
Here is what you can include in the filters dict (picking true or false as necessary):
Returns:
output: dict
See also
get_assets(project_id, page, limit, filters)
Get details of assets from a project.
Parameters:
project_id: string
ID of the project of which the assets will be obtained. Project IDs can be procured from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
page: integer, default 1
limit: integer, default 10
filters: dict, default {}
By default, all assets will be returned. By including a dict filter here, you may filter the assets you receive.
Here is a list of possible filters you may pass in the filters dict:
Returns:
output: dict
Example:
Retrieve the first ten assets from the project:
Retrieve all assets from the project:
Retrieve a single asset via asset ID:
get_batches(project_id)
Get details of all batches in a project.
Parameters:
project_id: string
ID of the project to download the batches of. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
Returns:
output: dict
Example:
Outputs:
See also
get_issues(project_id, asset_id, task_id, stage_id, created_by)
Retrieve issues of a project
Parameters:
project_id: string
ID of the project to download the details of. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
asset_id: string, default None
task_id: string, default None
stage_id: string, default None
created_by: string, default None
Returns:
output: dict
Example:
get_metrics(project_id, metric)
Get metrics from a project.
Parameters:
project_id: string
ID of the project of which the assets will be obtained. Project IDs can be procured from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
metric: imerit_ango.sdk.Metrics
The metric you wish to obtain, from:
imerit_ango.sdk.Metrics
LabelStageGroups
TimePerTask
AnnotationStatus
AnswerDistribution
ConsensusRanges
AssetSize
Returns:
output: dict
Example:
get_project(project_id)
Get details of a project.
Objects available within the response
returned by this function:
response['data']['project']['<one of the below>']
aiAssistance, description, categorySchema, consensusCount, benchmark, deleted, reviewConf, batches, _id, name, user, organization, createdAt, assignedTo, tags, __v, role
Parameters:
project_id: string
ID of the project to download the details of. Project IDs can be obtained from the UI and from list_projects.
Example:
'0000000aa0a00a0000aaaa0a'
Returns:
output: dict
Example:
Outputs:
See also
get_task(task_id)
Get information on a task
Parameters:
task_id: string
ID of the task the information of which will be downloaded. Task IDs can be obtained from the UI and from get_tasks.
Example:
'0000000aa0a00a0000aaaa0a'
Returns:
output: dict
Example:
See also
get_tasks(project_id, page, limit, status, stage, batches)
Get tasks of a project.
Tasks in projects are paginated. A maximum of 1000 items per page can be obtained. See the code snippets below for an example of how to download all tasks from a project by flipping through the pages.
Parameters: