from together import Together
import os
client = Together(
api_key=os.environ.get("TOGETHER_API_KEY"),
)
checkpoints = client.fine_tuning.list_checkpoints(id="ft-id")
print(checkpoints)
List the checkpoints for a single fine-tuning job.
GET
/
fine-tunes
/
{id}
/
checkpoints
Copy
Ask AI
from together import Together
import os
client = Together(
api_key=os.environ.get("TOGETHER_API_KEY"),
)
checkpoints = client.fine_tuning.list_checkpoints(id="ft-id")
print(checkpoints)