docs/en/platform/train/index.md
Ultralytics Platform provides comprehensive tools for training YOLO models, from organizing experiments to running cloud training jobs with real-time metrics streaming.
<p align="center"> <iframe loading="lazy" width="720" height="405" src="https://www.youtube.com/embed/bajkq0NrSN8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen> </iframe><strong>Watch:</strong> Get Started with Ultralytics Platform - Train
</p>The Training section helps you:
<!-- screenshot -->
graph LR
A[📁 Project]:::start --> B[⚙️ Configure]:::proc
B --> C[🚀 Train]:::proc
C --> D[📈 Monitor]:::proc
D --> E[📦 Export]:::out
classDef start fill:#4CAF50,color:#fff
classDef proc fill:#2196F3,color:#fff
classDef out fill:#9C27B0,color:#fff
| Stage | Description |
|---|---|
| Project | Create a workspace to organize related models |
| Configure | Select dataset, base model, and training parameters |
| Train | Run on cloud GPUs or your local hardware |
| Monitor | View real-time loss curves and metrics |
| Export | Convert to 20 deployment formats (details) |
Ultralytics Platform supports multiple training approaches:
| Method | Description | Best For |
|---|---|---|
| Cloud Training | Train on Ultralytics Cloud GPUs | No local GPU, scalability |
| Local Training | Train locally, stream metrics to the platform | Existing hardware, privacy |
| Colab Training | Use Google Colab with platform integration | Free GPU access |
!!! tip "Automatic GPU Routing"
When you select a GPU cheaper than the RTX PRO 6000 and Ultralytics-managed capacity is free, the Platform runs
your job on an RTX PRO 6000 while still billing your selected GPU's hourly rate. Runs can finish sooner and cost
less than they would have on the selected GPU — the upgrade never adds time or cost.
Available GPUs for cloud training on Ultralytics Cloud:
{% include "macros/platform-gpu-table.md" %}
!!! info "GPU Tier Access"
B200 and B300 GPUs require a [Pro or Enterprise plan](../account/billing.md#plans). All other GPUs are available on all plans including Free.
!!! tip "Signup Credits"
New accounts receive signup credits for training. Check [Billing](../account/billing.md) for details.
During training, view live metrics across three subtabs:
graph LR
A[Charts]:::start --> B[Loss Curves]:::out
A --> C[Task Metrics]:::out
D[Console]:::start --> E[Live Logs]:::out
D --> F[Error Detection]:::out
G[System]:::start --> H[GPU, CPU & Memory]:::out
G --> I[Network & Disk I/O]:::out
classDef start fill:#4CAF50,color:#fff
classDef out fill:#9C27B0,color:#fff
| Subtab | Metrics |
|---|---|
| Charts | Task metrics (mAP50, mAP50-95, precision, recall for detection), train/val losses, learning rate |
| Console | Live training logs with ANSI color and automatic error detection |
| System | GPU utilization, GPU memory and temperature, CPU, RAM, network and disk I/O |
!!! info "Automatic Checkpoints"
The best checkpoint (`best.pt`, the highest-fitness epoch) is uploaded to the Platform periodically **while
training runs** and again when the run ends, so download, export, and deployment always use the best epoch
produced so far. Cancelled runs keep the last checkpoint that finished uploading.
Get started with cloud training in under a minute:
=== "Cloud (UI)"
1. Create a project in the sidebar
2. Click **New Model**
3. Select a model, dataset, and GPU
4. Click **Start Training**
=== "Remote (CLI)"
```bash
export ULTRALYTICS_API_KEY="YOUR_API_KEY"
yolo train model=yolo26n.pt data=ul://username/datasets/my-dataset \
epochs=100 project=username/my-project name=exp1
```
=== "Remote (Python)"
```python
from ultralytics import YOLO
model = YOLO("yolo26n.pt")
model.train(
data="ul://username/datasets/my-dataset",
epochs=100,
project="username/my-project",
name="exp1",
)
```
Training time depends on:
The current estimator predicts about 6 minutes for 1000 images, YOLO26n, 100 epochs on RTX PRO 6000, and about 2 minutes for 500 images, YOLO26n, 50 epochs on RTX 4090. Actual duration varies; use the live estimate in the training dialog for the selected dataset and configuration. See cost examples.
Yes. Concurrent cloud training limits depend on your plan: Free allows 3, Pro allows 10, and Enterprise is unlimited. For additional parallel training, use remote training from multiple machines.
If training fails:
| Scenario | Recommended GPU |
|---|---|
| Most training jobs | RTX PRO 6000 |
| Large datasets or batch sizes | H100 SXM or H200 |
| Budget-conscious | RTX 4090 |