查詢指定調優任務產出的全部 Checkpoint。
查詢調優任務 Checkpoint 列表
查詢指定調優任務產出的全部 Checkpoint。當前僅支援多 Checkpoint 輸出的模型(如 cosyvoice-v3-flash)。
Windows CMD 請將${DASHSCOPE_API_KEY}替換為%DASHSCOPE_API_KEY%,PowerShell 請替換為$env:DASHSCOPE_API_KEY
curl --location --request GET "https://dashscope-intl.aliyuncs.com/api/v1/fine-tunes/<替換為您的調優任務id>/checkpoints" \
--header "Authorization: Bearer ${DASHSCOPE_API_KEY}" \
--header 'Content-Type: application/json'
輸入參數
|
欄位 |
類型 |
傳參方式 |
必選 |
描述 |
|
job_id |
String |
Url Path |
是 |
要查詢的調優任務的ID。即建立調優任務返回參數中的job_id。 |
返回範例
{
"request_id": "aa4b0229-b1db-9afa-bb6e-3b3e9ee1489b",
"output": [
{
"create_time": "2026-05-27T18:07:16",
"full_name": "ft-202605271743-dd2a:checkpoint-00040004",
"job_id": "ft-202605271743-dd2a",
"checkpoint_id": "ft-202605271743-dd2a:checkpoint-00040004",
"checkpoint": "checkpoint-00040004",
"model_name": "cosyvoice-v3-flash-ft-202605271743-dd2a",
"model_display_name": "ft-202605271743-dd2a",
"status": "SUCCEEDED",
"expire_time": "2026-06-11T18:07:16",
"step": 40004
},
{
"create_time": "2026-05-27T18:07:16",
"full_name": "ft-202605271743-dd2a:checkpoint-00030004",
"job_id": "ft-202605271743-dd2a",
"checkpoint_id": "ft-202605271743-dd2a:checkpoint-00030004",
"checkpoint": "checkpoint-00030004",
"status": "PENDING",
"expire_time": "2026-06-11T18:07:16",
"step": 30004
}
]
}
返回參數
|
參數名稱 |
類型 |
參數說明 |
|
request_id |
String |
本次請求的ID。 |
|
output |
Array |
Checkpoint 數組。按 LM epoch × FM epoch 的乘積從大到小排序(乘積越大代表 LM 與 FM 雙端調優越充分)。 |
|
output[*].checkpoint_id |
String |
Checkpoint 唯一標識,格式為 |
|
output[*].full_name |
String |
同 |
|
output[*].checkpoint |
String |
Checkpoint 名稱,格式為 |
|
output[*].job_id |
String |
該 Checkpoint 所屬的調優任務 ID。 |
|
output[*].step |
Integer |
Checkpoint 對應的 step 編碼,計算方式為 |
|
output[*].status |
String |
該 Checkpoint 的狀態。常見值: |
|
output[*].model_name |
String |
該 Checkpoint 對應的模型 ID,可作為建立部署介面的 |
|
output[*].model_display_name |
String |
模型顯示名稱(控制台展示用)。僅在 |
|
output[*].create_time |
String |
該 Checkpoint 的建立時間,格式為 ISO 8601。 |
|
output[*].expire_time |
String |
該 Checkpoint 的到期時間,格式為 ISO 8601。 |