mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-31 02:02:21 +06:00
Fix type annotation for deepspeed training arg (#24988)
This commit is contained in:
parent
5b7ffd5492
commit
a6484c89b9
@ -1001,6 +1001,7 @@ class TrainingArguments:
|
||||
)
|
||||
},
|
||||
)
|
||||
# Do not touch this type annotation or it will stop working in CLI
|
||||
fsdp_config: Optional[str] = field(
|
||||
default=None,
|
||||
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,
|
||||
metadata={
|
||||
"help": (
|
||||
|
Loading…
Reference in New Issue
Block a user