From c0a8865de224deaaa516aec0bcd76c9bdad6a4e5 Mon Sep 17 00:00:00 2001 From: jli Date: Thu, 5 Mar 2026 15:33:47 -0800 Subject: [PATCH 1/2] update API doc --- openapi.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index be339c7..d4bbe07 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2584,6 +2584,9 @@ paths: format: float default: 0.0 description: Weight decay. Regularization parameter for the optimizer. + random_seed: + type: integer + 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 `42` is used. 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: integer + nullable: true + description: Random seed used for reproducible training, if set wandb_project_name: type: string description: Weights & Biases project name From ce8d0869b7e7d28ad21b4df6802f47e601e7a3c1 Mon Sep 17 00:00:00 2001 From: jli Date: Mon, 9 Mar 2026 16:00:13 -0700 Subject: [PATCH 2/2] update api doc --- openapi.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index d4bbe07..8c94e00 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2585,8 +2585,8 @@ paths: default: 0.0 description: Weight decay. Regularization parameter for the optimizer. random_seed: - type: integer - 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 `42` is used. + 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 @@ -10585,9 +10585,9 @@ components: format: float description: Weight decay value used random_seed: - type: integer + type: string nullable: true - description: Random seed used for reproducible training, if set + description: Random seed used for reproducible training (e.g. "42"), if set wandb_project_name: type: string description: Weights & Biases project name