mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-10-14 23:58:11 +08:00
fix: string
Former-commit-id: 73e1da5ab07c96a6faa9738e83c4dd9297f34b14
This commit is contained in:
parent
44895ebe36
commit
95b7e10a06
@ -311,19 +311,19 @@ class SwanLabArguments:
|
|||||||
metadata={"help": "Whether or not to use the SwanLab (an experiment tracking and visualization tools)."},
|
metadata={"help": "Whether or not to use the SwanLab (an experiment tracking and visualization tools)."},
|
||||||
)
|
)
|
||||||
swanlab_project: str = field(
|
swanlab_project: str = field(
|
||||||
default="",
|
default=None,
|
||||||
metadata={"help": "The project name in SwanLab."},
|
metadata={"help": "The project name in SwanLab."},
|
||||||
)
|
)
|
||||||
swanlab_workspace: str = field(
|
swanlab_workspace: str = field(
|
||||||
default="",
|
default=None,
|
||||||
metadata={"help": "The workspace name in SwanLab."},
|
metadata={"help": "The workspace name in SwanLab."},
|
||||||
)
|
)
|
||||||
swanlab_experiment_name: str = field(
|
swanlab_experiment_name: str = field(
|
||||||
default="",
|
default=None,
|
||||||
metadata={"help": "The experiment name in SwanLab."},
|
metadata={"help": "The experiment name in SwanLab."},
|
||||||
)
|
)
|
||||||
swanlab_description: str = field(
|
swanlab_description: str = field(
|
||||||
default="",
|
default=None,
|
||||||
metadata={"help": "The experiment description in SwanLab."},
|
metadata={"help": "The experiment description in SwanLab."},
|
||||||
)
|
)
|
||||||
swanlab_mode: Literal["cloud", "local", "disabled"] = field(
|
swanlab_mode: Literal["cloud", "local", "disabled"] = field(
|
||||||
@ -331,7 +331,7 @@ class SwanLabArguments:
|
|||||||
metadata={"help": "The mode of SwanLab."},
|
metadata={"help": "The mode of SwanLab."},
|
||||||
)
|
)
|
||||||
swanlab_api_key: str = field(
|
swanlab_api_key: str = field(
|
||||||
default="",
|
default=None,
|
||||||
metadata={"help": "The API key for SwanLab."},
|
metadata={"help": "The API key for SwanLab."},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user