Skip to content

Commit 295fffb

Browse files
authored
add FT descriptions
2 parents 0f8236f + 098b447 commit 295fffb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: openapi.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -423,24 +423,24 @@ paths:
423423
n_epochs:
424424
type: integer
425425
default: 1
426-
description: Number of epochs for fine-tuning
426+
description: Number of complete passes through the training dataset (higher values may improve results but increase cost and risk of overfitting)
427427
n_checkpoints:
428428
type: integer
429429
default: 1
430-
description: Number of checkpoints to save during fine-tuning
430+
description: Number of intermediate model versions saved during training for evaluation
431431
n_evals:
432432
type: integer
433433
default: 0
434434
description: Number of evaluations to be run on a given validation set during training
435435
batch_size:
436436
type: integer
437437
default: 32
438-
description: Batch size for fine-tuning
438+
description: Number of training examples processed together (larger batches use more memory but may train faster)
439439
learning_rate:
440440
type: number
441441
format: float
442442
default: 0.00001
443-
description: Learning rate multiplier to use for training
443+
description: Controls how quickly the model adapts to new information (too high may cause instability, too low may slow convergence)
444444
lr_scheduler:
445445
type: object
446446
default: none
@@ -465,7 +465,7 @@ paths:
465465
description: Suffix that will be added to your fine-tuned model name
466466
wandb_api_key:
467467
type: string
468-
description: API key for Weights & Biases integration
468+
description: Integration key for tracking experiments and model metrics on W&B platform
469469
wandb_base_url:
470470
type: string
471471
description: The base URL of a dedicated Weights & Biases instance.
@@ -1571,7 +1571,7 @@ components:
15711571
type: integer
15721572
minimum: 0
15731573
maximum: 1
1574-
description: Determines the number of most likely tokens to return at each token position log probabilities to return.
1574+
description: Integer (0 or 1) that controls whether log probabilities of generated tokens are returned. Log probabilities help assess model confidence in token predictions.
15751575
echo:
15761576
type: boolean
15771577
description: If true, the response will contain the prompt. Can be used with `logprobs` to return prompt logprobs.

0 commit comments

Comments
 (0)