Fix type annotation for deepspeed training arg (#24988)
This commit is contained in:
@@ -1001,6 +1001,7 @@ class TrainingArguments:
|
|||||||
)
|
)
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
# Do not touch this type annotation or it will stop working in CLI
|
||||||
fsdp_config: Optional[str] = field(
|
fsdp_config: Optional[str] = field(
|
||||||
default=None,
|
default=None,
|
||||||
metadata={
|
metadata={
|
||||||
@@ -1019,7 +1020,8 @@ class TrainingArguments:
|
|||||||
)
|
)
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
deepspeed: Optional[Union[str, Dict]] = field(
|
# Do not touch this type annotation or it will stop working in CLI
|
||||||
|
deepspeed: Optional[str] = field(
|
||||||
default=None,
|
default=None,
|
||||||
metadata={
|
metadata={
|
||||||
"help": (
|
"help": (
|
||||||
|
|||||||
Reference in New Issue
Block a user