Skip to content
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
11 changes: 11 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2589,6 +2589,12 @@ paths:
format: float
default: 0.0
description: Weight decay. Regularization parameter for the optimizer.
random_seed:
type: integer
nullable: true
description: >
Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init).
If omitted or null, the server applies its default seed (e.g. 42).
suffix:
type: string
description: Suffix that will be added to your fine-tuned model name
Expand Down Expand Up @@ -10809,6 +10815,11 @@ components:
type: number
format: float
description: Weight decay value used
random_seed:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

btw it's not shown in the UI, probably we need to create a dependency for FE. But not 100% sure we want to show it there

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry what does FE stand for?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's nice to have if you meant frontend.

type: integer
nullable: true

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are you sure it's nullable? I thought we always explicitly set some random_seed from now on

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After double check, the API model allows empty value for this. It's the backend who sets the default.

description: >
Random seed used for training. Integer when set; null if not stored (e.g. legacy jobs) or no explicit seed was recorded.
wandb_project_name:
type: string
description: Weights & Biases project name
Expand Down
Loading