cURL
curl --request GET \ --url https://api.tokenfactory.nebius.com/v1/fine_tuning/jobs \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "created_at": 123, "hyperparameters": { "batch_size": 8, "learning_rate": 0.00001, "n_epochs": 3, "warmup_ratio": 0, "weight_decay": 0, "lora": false, "lora_r": 8, "lora_alpha": 8, "lora_dropout": 0, "packing": true, "max_grad_norm": 1, "context_length": 8192 }, "model": "<string>", "status": "validating_files", "training_file": "<string>", "error": { "code": "<string>", "message": "<string>", "param": "<string>" }, "finished_at": 123, "integrations": [ { "wandb": { "project": "<string>", "name": "<string>", "entity": "<string>", "tags": [ "<string>" ] }, "type": "wandb" } ], "object": "fine_tuning.job", "organization_id": "", "result_files": [], "seed": 0, "suffix": "<string>", "trained_tokens": 123, "validation_file": "<string>", "estimated_finish": 123, "trained_steps": 123, "total_steps": 123 } ], "has_more": true, "object": "list" }
Lists all fine-tuning jobs.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Project ID to list fine tuning jobs
Successful Response
List of fine-tuning jobs
Show child attributes
Whether there are more jobs to fetch
The object type, which is always 'list'
Was this page helpful?