> ## 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.

# 监控

> 在平台上监控训练任务状态和指标

[platform.osmosis.ai](https://platform.osmosis.ai) 平台 dashboard 为训练任务提供实时可见性。

## Training Runs

**Training Runs** 页面会列出每个训练任务的名称、状态、数据集、base model、rollout、reward、开始时间和创建者。您可以搜索和筛选训练任务，打开任务详情页，重命名任务，停止进行中的任务，或删除可以安全移除的任务。

## 任务指标

每个训练任务详情页都包含 **Overview** tab，其中有 summary cards 和指标图表。当某个任务有可用数据时，dashboard 会展示以下指标：

| Metric                | Description                    |
| --------------------- | ------------------------------ |
| **Duration**          | 训练任务运行时间。                      |
| **Reward**            | 当前 training reward 值。          |
| **Improvement**       | 相比 baseline reward 的变化。        |
| **Samples**           | 已处理的样本数量。                      |
| **Training Reward**   | Training reward 随训练 step 变化。   |
| **Validation Reward** | Validation reward 随训练 step 变化。 |
| **Model Entropy**     | Model entropy 随训练 step 变化。     |
| **Response Length**   | Response length 随训练 step 变化。   |
| **Total Length**      | Total length 随训练 step 变化。      |
| **Truncation Ratio**  | Truncation ratio 随训练 step 变化。  |

您可以在 dashboard 中刷新单个图表，并将图表数据下载为 CSV。

## Checkpoints 和 Outputs

任务详情页还包含：

* **Checkpoints** —— 查看已保存 checkpoints、checkpoint step、reward、deployment status、Hugging Face upload status、uploader 和 checkpoint actions。
* **Configuration** —— 查看该任务使用的 training configuration。
* **Outputs** —— 在可用时查看 output artifacts。

您也可以从 CLI 查看任务详情、checkpoints 和指标：

```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
```
