Skip to content
Open
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
7 changes: 7 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2584,6 +2584,9 @@ paths:
format: float
default: 0.0
description: Weight decay. Regularization parameter for the optimizer.
random_seed:
type: string
description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, a default seed is used. Pass a numeric string (e.g. "42").
suffix:
type: string
description: Suffix that will be added to your fine-tuned model name
Expand Down Expand Up @@ -10581,6 +10584,10 @@ 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
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
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: string
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
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 reproducible training (e.g. "42"), if set
wandb_project_name:
type: string
description: Weights & Biases project name
Expand Down