Skip to main content
POST
/
api
/
training
/
start
Start training run
curl --request POST \
  --url https://console.neuronsearchlab.com/api/training/start \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "template_id": 123,
  "epochs": 5,
  "batch_size": 64,
  "learning_rate": 0.001
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.neuronsearchlab.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Platform API key issued from Console > Platform API Keys. Format: nsl__.

Body

application/json
template_id
integer
required
epochs
integer
default:5
batch_size
enum<integer>
Available options:
64,
128,
256,
512
learning_rate
number
default:0.001

Response

Training started

The response is of type object.