Creating a New Project
Project Overview
A project in Labellerr organizes your datasets and their annotations. Use the following method to create a project:
Limitations:
- Maximum of 2,500 files per folder.
- Total folder size should not exceed 2.5 GB.
Acceptable value:
- option_type
'input'
,'radio'
,'boolean'
,'select'
,'dropdown'
,'stt'
,'imc'
,'BoundingBox'
,'polygon'
,'dot'
,'audio'
Data Types and Supported Formats
The Labellerr SDK supports various data types and file formats for your annotation projects:
When using the SDK methods, specify the data type as one of:
Supported Data Types and Extensions
Data Type | Description | Supported Extensions |
---|---|---|
image | Image files for visual annotation | .jpg, .jpeg, .png, .bmp, .tiff |
video | Video content for temporal annotation | .mp4 |
audio | Audio files for sound annotation | .mp3, .wav |
document | Document files for text analysis | |
text | Plain text files for text annotation | .txt |
'image'
, 'video'
, 'audio'
, 'document'
, or 'text'
.When using the initiate_create_project()
function, you must provide either:annotation_guide
(as a dictionary), orannotation_template_id
(as a string)
Example: Creating a Project with an Existing Template
Project Creation with Template
Example: Creating a Project with Inline Annotation Questions
You can also add classification questions and annotation questions while creating the project.
Project Creation with Inline Annotation Guide
Glossary
Project Payload Fields
Variable/Key | Type | Description | Example Value |
---|---|---|---|
client_id | String | Unique identifier for the client or organization creating the project | client_123 |
dataset_name | String | Name of the dataset being created | New_dataset |
dataset_description | String | Description explaining the dataset’s purpose and contents | A sample dataset for image classification |
data_type | String | Type of data in the dataset | image |
created_by | String | Email address of the project creator | user@example.com |
project_name | String | Display name for the annotation project | Image Classification Project |
annotation_template_id | String | ID of existing annotation template defining label structure | template_456 |
autolabel | Boolean | Enable/disable automatic AI pre-labeling | false |
folder_to_upload | String | Local file path to dataset folder | path/to/your/dataset |
annotation_rotation_count | Integer | Number of times data item need to be annotated | 1 |
review_rotation_count | Integer | Number of times annotated item need to be reviewed | 1 |
client_review_rotation_count | Integer | Number of times client reviewers need to be done. | 1 |