docs/en/platform/train/projects.md
Ultralytics Platform projects provide an effective solution for organizing and managing your models. Group related models together to facilitate easier management, comparison, and development.
graph TB
P[Project]:::start --> M1[Model 1]:::proc
P --> M2[Model 2]:::proc
P --> M3[Model 3]:::proc
M1 --> C[Charts Dashboard]:::out
M2 --> C
M3 --> C
M1 --> T[Comparison Table]:::out
M2 --> T
M3 --> T
classDef start fill:#4CAF50,color:#fff
classDef proc fill:#2196F3,color:#fff
classDef out fill:#9C27B0,color:#fff
Navigate to Projects in the sidebar and click New Project.
<!-- screenshot --> ??? tip "Quick Create"
You can also create a project from the Home page quick actions.
Enter your project details:
<!-- screenshot --> Click Create Project to finalize. Your new project appears in the Projects list and sidebar.
The project page has two main areas:
| Area | Description |
|---|---|
| Models Sidebar | Resizable list of all models in the project with search, status filters, sort options, and checkboxes for selection |
| Main Panel | Charts dashboard or comparison table (toggle between views) |
<!-- screenshot -->
The header displays:
Action buttons in the header:
| Button | Description |
|---|---|
| New Model | Open the training dialog for editable projects |
| Upload models | Select one or more .pt checkpoints for an editable project |
| Clone Project | Clone a public project and its completed models into your workspace |
| Star | Star or unstar the project |
| Share | Share or embed a public project |
| Refresh | Refresh project data |
| Delete project | Move an owned project and its models to Trash |
Toggle between three view modes using the view controls:
<!-- screenshot -->
The resizable sidebar lists all models in the project:
.pt files directly onto the sidebar to upload models (model upload details)Click any model to open its model page.
Customize your project icon:
Control who can see your project:
| Setting | Description |
|---|---|
| Public | Anyone can view on Explore page |
| Private | Only you and your team members |
There is no per-project collaborator invite. To share a project with others, use either of these mechanisms:
Clone a public project to your own account:
!!! info "Clone Behavior"
Cloned projects inherit the source project's visibility by default (so cloning a public project creates a public clone), and you can choose Public or Private in the clone dialog before confirming. Enterprise workspaces default new clones to private. The clone count is displayed on the original project. If the original has a copyleft license (e.g., AGPL-3.0), the clone inherits and locks that license.
Compare model performance using the charts dashboard:
Available chart groups:
| Group | Charts |
|---|---|
| Metrics | mAP50, mAP50-95, precision, recall |
| Loss | train/box_loss, train/cls_loss, train/dfl_loss, val/box_loss, val/cls_loss, val/dfl_loss |
| Learning Rate | lr/pg0, lr/pg1, lr/pg2 |
!!! tip "Interactive Charts"
- Hover to see exact values
- Click legend items to hide/show models
- Drag to zoom into specific regions
- Click a model line to navigate to that model's page
- Rearrange and resize charts; layout persists across sessions
Switch to table view for side-by-side comparison of training arguments and final metrics:
Upload existing .pt model files:
.pt file!!! example "Supported Files"
Only PyTorch `.pt` files from Ultralytics YOLO training are supported. The Platform parses embedded metadata including training results, arguments, task type, and class names. See [Models](models.md) for format details.
Update project name, description, or settings:
<!-- screenshot -->
Remove a project you no longer need:
!!! warning "Cascading Delete"
Deleting a project also deletes all models inside it. This action moves items to [Trash](../account/trash.md) where they can be restored within 30 days.
There is no separate per-project model limit. The workspace-wide plan limit applies across all projects: Free supports 100 models, Pro supports 500, and Enterprise is unlimited. For clearer comparisons:
Yes, deleted projects go to Trash and can be restored within 30 days:
Yes, you can clone a model to a different project using the clone model dialog from the model page.