You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.yaml
+6-6
Original file line number
Diff line number
Diff line change
@@ -423,24 +423,24 @@ paths:
423
423
n_epochs:
424
424
type: integer
425
425
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)
427
427
n_checkpoints:
428
428
type: integer
429
429
default: 1
430
-
description: Number of checkpoints to save during fine-tuning
430
+
description: Number of intermediate model versions saved during training for evaluation
431
431
n_evals:
432
432
type: integer
433
433
default: 0
434
434
description: Number of evaluations to be run on a given validation set during training
435
435
batch_size:
436
436
type: integer
437
437
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)
439
439
learning_rate:
440
440
type: number
441
441
format: float
442
442
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)
444
444
lr_scheduler:
445
445
type: object
446
446
default: none
@@ -465,7 +465,7 @@ paths:
465
465
description: Suffix that will be added to your fine-tuned model name
466
466
wandb_api_key:
467
467
type: string
468
-
description: API key for Weights & Biases integration
468
+
description: Integration key for tracking experiments and model metrics on W&B platform
469
469
wandb_base_url:
470
470
type: string
471
471
description: The base URL of a dedicated Weights & Biases instance.
@@ -1571,7 +1571,7 @@ components:
1571
1571
type: integer
1572
1572
minimum: 0
1573
1573
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.
1575
1575
echo:
1576
1576
type: boolean
1577
1577
description: If true, the response will contain the prompt. Can be used with `logprobs` to return prompt logprobs.
0 commit comments