> ## Documentation Index
> Fetch the complete documentation index at: https://docs.osmosis.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Monitoring

> Monitor training run status and metrics on the platform

The platform dashboard at [platform.osmosis.ai](https://platform.osmosis.ai) provides real-time visibility into your training runs.

## Training Runs

The **Training Runs** page lists each run with its name, status, dataset, base model, rollout, reward, start time, and creator. You can search and filter runs, open a run detail page, rename a run, stop an in-progress run, or delete runs that are safe to remove.

## Run Metrics

Each training run detail page includes an **Overview** tab with summary cards and metric charts. The dashboard exposes the following metrics when they are available for the run:

| Metric                | Description                            |
| --------------------- | -------------------------------------- |
| **Duration**          | Runtime for the training run.          |
| **Reward**            | Current training reward value.         |
| **Improvement**       | Change from the baseline reward.       |
| **Samples**           | Number of processed examples.          |
| **Training Reward**   | Training reward over training steps.   |
| **Validation Reward** | Validation reward over training steps. |
| **Model Entropy**     | Model entropy over training steps.     |
| **Response Length**   | Response length over training steps.   |
| **Total Length**      | Total length over training steps.      |
| **Truncation Ratio**  | Truncation ratio over training steps.  |

You can refresh individual charts and download chart data as CSV from the dashboard.

## Checkpoints and Outputs

The run detail page also includes:

* **Checkpoints** — view saved checkpoints, checkpoint step, reward, deployment status, Hugging Face upload status, uploader, and checkpoint actions.
* **Configuration** — inspect the training configuration used for the run.
* **Outputs** — inspect output artifacts when they are available.

You can also check run details, checkpoints, and metrics from the CLI:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"},"languages":{"custom":["/languages/cli.json"]}}
osmosis train info my-run
osmosis train info my-run --output results/my-run.json
```
