Skip to content

Latest commit

 

History

History
109 lines (95 loc) · 3.57 KB

File metadata and controls

109 lines (95 loc) · 3.57 KB

Create Labeling Job

Create Labeling Job layer allows you to create labeling jobs for your team members. You can specify the reviewer, assign labelers and select classes and tags to label in node options. If there are no connected layers between the source data layer and the Create Labeling Job layer that alter source data or annotations then the labeling job will be assigned to the project from which the data is taken, otherwise new project will be created.

Settings

  • Description
    • Labeling Job Title - the name of the labeling job
    • Short Description - enter the description of the labeling job
    • Readme - enter the instructions for labelers
  • Members
    • Reviewer - select a user to review labeling job results
    • Labelers - select a user or multiple users to label data
  • Classes - select classes to label
  • Tags - select tags to label
  • Output - Available if there are connected layers between the source data layer and the Labeling Job layer that alter source data or annotations in any way. If there are no such connected layers, the labeling job will be assigned to the project from which the data is taken.
    • Project Name - the name of the project that will be created
    • Dataset Name - the name of the dataset that will be created

Example 1. Assign to source project

There are no layers that alter source data or annotations between the source data layer and the Labeling Job layer, so the labeling job will be assigned to the project from which the data is taken.

Source datasets Source datasets after Labeling Job layer applied
Source project Existing project

Example 2. New project

There are layers that alter source data or annotations between the source data layer and the Labeling Job layer, so a new project will be created.

JSON views

Assign to source project
	  {
	  	"action": "create_labeling_job",
	  	"src": [
	  		"$filter_image_by_tag_7__true"
	  	],
	  	"dst": [],
	  	"settings": {
	  		"job_name": "dogs",
	  		"description": null,
	  		"readme": null,
	  		"user_ids": [
	  			7
	  		],
	  		"reviewer_id": 6,
	  		"classes_to_label": [
	  			"dog"
	  		],
	  		"tags_to_label": [],
	  		"create_new_project": false,
	  		"project_name": "",
	  		"dataset_name": null,
	  		"keep_original_ds": true
	  	}
	  },
  
New project
    {
    		"action": "create_labeling_job",
    		"src": [
    			"$anonymize_8"
    		],
    		"dst": "New project",
    		"settings": {
    			"job_name": "cats",
    			"description": null,
    			"readme": null,
    			"user_ids": [
    				7
    			],
    			"reviewer_id": 6,
    			"classes_to_label": [
    				"cat",
    				"dog"
    			],
    			"tags_to_label": [
    				"cat",
    				"dog"
    			],
    			"create_new_project": true,
    			"project_name": "New project",
    			"dataset_name": "New dataset",
    			"keep_original_ds": false
    		}
    }