GetTrainingMetricsResponseSchema
Training metrics data for the fine-tuning job.
Indicates the result of the operation. Typically "success".
metrics object
Training and evaluation metrics recorded during the fine-tuning job.
Messages describing how the training job concluded, such as "Training job ended" or an error description.
Final status of the training job: dormant (completed and resources released) or failed.
Validation loss values, typically the loss before fine-tuning followed by the loss after fine-tuning. Lower values indicate better generalization.
Validation perplexity values before and after fine-tuning. May be empty if perplexity is not computed.
Training loss values recorded across training steps; the final value is the final training loss.
Training perplexity values recorded across steps. May be empty if perplexity is not computed.
Validation loss values recorded at each evaluation step during training.
{
"message": {},
"status": "success",
"metrics": {
"end_train_message": [
"string"
],
"end_train_status": [
"string"
],
"eval_loss": [
0
],
"eval_perplexity": [
0
],
"loss": [
0
],
"perplexity": [
0
],
"step_loss_validation": [
null
]
}
}