-
Notifications
You must be signed in to change notification settings - Fork 15
update API doc for random seed param #222
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | ||
|
|
@@ -10581,6 +10584,10 @@ components: | |
| type: number | ||
| format: float | ||
| description: Weight decay value used | ||
| random_seed: | ||
| type: string | ||
| nullable: true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
|
||
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.