Download model
Step 1: List All Checkpoints
curl --location 'https://api.deeptrin.com/v1/fine-tuning/job/{{JOB_ID}}/checkpoint' \
--header 'Authorization: Bearer {{API_TOKEN}}'import requests
url = "https://api.deeptrin.com/v1/fine-tuning/job/{{JOB_ID}}/checkpoint"
payload = {}
headers = {
'Authorization': 'Bearer {{API_TOKEN}}'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
[
{
"id": "ftckpt-a91...",
"checkpoint": "checkpoint-30",
"step": 30,
"metrics": {
"loss": 0.0001
},
"created_at": 1730977618
}
]Step 2: Get Download Url
Last updated