The Together platform records metrics at every training and evaluation step. You can retrieve them at any point during or after a job — useful for tracking loss curves, diagnosing runs, and comparing experiments.Documentation Index
Fetch the complete documentation index at: https://docs.together.ai/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve metrics
Output format
By default, the CLI renders ASCII charts. Use--json to get raw JSON output instead.
Shell
train/* keys, while eval steps contain eval/* keys. When an eval checkpoint occurs at the same step as a training step, both objects appear for that step:
Filter by step or time
All filter parameters are optional. Omit them to retrieve all recorded metrics.Downsample with resolution
For long training runs, useresolution to cap the response at a fixed number of uniformly sampled training steps. Eval metrics are always returned in full regardless of this setting.
Parameters
| Parameter | Type | Description |
|---|---|---|
global_step_from | integer | Return only metrics with global_step ≥ this value. |
global_step_to | integer | Return only metrics with global_step ≤ this value. |
logged_at_from | string or datetime | Return only metrics logged at or after this ISO 8601 timestamp. |
logged_at_to | string or datetime | Return only metrics logged at or before this ISO 8601 timestamp. |
resolution | integer | Maximum number of uniformly sampled training metric points to return. Does not affect eval metrics. |
Available metrics
Every job reportstrain/global_step, train/loss, timestamp, and related training metrics. When you supply a validation_file and set n_evals > 0, the response also includes eval/loss and other validation metrics. Preference fine-tuning jobs additionally report reward, accuracy, KL divergence, and log-probability metrics for both preferred and non-preferred responses.