Fine-Tuning
Create a new fine-tuned model
POST
/
fine_tuned_models
Authorization
Body
curl --request POST \
--url https://api.honeyhive.ai/fine_tuned_models \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"dataset_id": "<string>",
"hyperparams": "<string>",
"model": "<string>",
"task": "<string>"
}'
{
"status": "<string>"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
dataset_id
string
hyperparams
string
model
string
task
string
Response
200 - application/json
status
string
curl --request POST \
--url https://api.honeyhive.ai/fine_tuned_models \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"dataset_id": "<string>",
"hyperparams": "<string>",
"model": "<string>",
"task": "<string>"
}'
{
"status": "<string>"
}