Create a project
With Multimodal projects, you can train your LLM model using a form that you can customize to suit your needs. Using our UI builder, you can select components to build your form out of and design the layout. Afterward, you can edit their functionality in the Code Editor and test it out in a preview. Once it’s done, you can generate them into a number of items that can then be used to train your model.
Create a project
To create a project:
- In the Projects tab, click New Project.
- Choose the project type.
- Type your project’s name.
- Next, you may select a workflow from any that are available for the team (found under Team Setup) to represent the project's annotation life cycle.
- You may enable the Category feature to be able to add categories to your items. This can be used to filter, curate, and assign tasks by category.
- Next, you can choose to create your form from scratch, or by selecting an existing template and working on that.
- Click Create.
Project limitEach team can only have up to 2000 projects created at a time.
SDK functions
Feature compatibilityIf you want to incorporate Python SDK functions into a project with a custom workflow, make sure you use the following python version or higher:
4.4.25
To create a project:
sa_client.create_project(
project_name = "Project Name",
project_description = "Project Description",
project_type = "Multimodal"
)