Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add FT descriptions #71

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -423,24 +423,24 @@ paths:
n_epochs:
type: integer
default: 1
description: Number of epochs for fine-tuning
description: Number of complete passes through the training dataset (higher values may improve results but increase cost and risk of overfitting)
n_checkpoints:
type: integer
default: 1
description: Number of checkpoints to save during fine-tuning
description: Number of intermediate model versions saved during training for evaluation
n_evals:
type: integer
default: 0
description: Number of evaluations to be run on a given validation set during training
batch_size:
type: integer
default: 32
description: Batch size for fine-tuning
description: Number of training examples processed together (larger batches use more memory but may train faster)
learning_rate:
type: number
format: float
default: 0.00001
description: Learning rate multiplier to use for training
description: Controls how quickly the model adapts to new information (too high may cause instability, too low may slow convergence)
lr_scheduler:
type: object
default: none
Expand All @@ -465,7 +465,7 @@ paths:
description: Suffix that will be added to your fine-tuned model name
wandb_api_key:
type: string
description: API key for Weights & Biases integration
description: Integration key for tracking experiments and model metrics on W&B platform
wandb_base_url:
type: string
description: The base URL of a dedicated Weights & Biases instance.
Expand Down Expand Up @@ -1571,7 +1571,7 @@ components:
type: integer
minimum: 0
maximum: 1
description: Determines the number of most likely tokens to return at each token position log probabilities to return.
description: Integer (0 or 1) that controls whether log probabilities of generated tokens are returned. Log probabilities help assess model confidence in token predictions.
echo:
type: boolean
description: If true, the response will contain the prompt. Can be used with `logprobs` to return prompt logprobs.
Expand Down